作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
你如何用 T-SQL 编写这个?我想只显示第一个左括号后的前 2 个字符。
(INSTR(main.cat, ':',1,1),0,' ', SUBSTR(main.cat,INSTR(main.cat, '(',1,1)+1,
INSTR(main.cat, '-',1,1)-(INSTR(main.cat, '(',1,1)+2))) 作为“条件”,
From: T: (A1 - 7)
TO: A1
另外,如何更改名称字段(在一个字段中同时包含姓氏和名字)
from: Smith, Paul
to: Paul Smith
INSTR(emp.NAME, ',') +1, LENGTH(emp.NAME)-1)|| ' '||SUBSTR(emp.NAME, 1, INSTR(emp.NAME, ',')-1)
最佳答案
您使用charindex()
。根据您的描述:
select substring(main.cat, charindex('(', main.cat) + 1, 2)
如果没有括号,您可能需要使用 case
来防止错误:
select (case when main.cat like '%(__%'
then substring(main.cat, charindex('(', main.cat) + 1, 2)
end)
关于sql - 如何在 T-SQL 中编写 INSTR?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33734789/
我是一名优秀的程序员,十分优秀!