mysql函数中concat在sqlserver函数中怎么用

 我来答
双枪老椰子
推荐于2018-02-11 · TA获得超过5.5万个赞
知道大有可为答主
回答量:5797
采纳率:93%
帮助的人:1750万
展开全部
本来程序数据库用的是mysql,后来转为sql server2005,
其中一个sql为:

select * from dbo.sys_person_info t where t.VALID_FLAG>0
and t.dept_id in(select a.dept_code from sys_dept a,sys_dept b
where a.sort_no like concat(b.sort_no,'%') and b.dept_code ='37010001'
)
程序报错:说concat函数不是内置的函数,原来是sql server没有concat这个函数,把代码做了一下修改
代替了concat函数,希望对大家有所帮助:
select * from dbo.sys_person_info t where t.VALID_FLAG>0
and t.dept_id in(select a.dept_code from sys_dept a,sys_dept b
where a.sort_no like b.sort_no + ''+'%' and b.dept_code ='37010001'
)

在oracle里的用法(没有测试):
select * from dbo.sys_person_info t where t.VALID_FLAG>0
and t.dept_id in(select a.dept_code from sys_dept a,sys_dept b
where a.sort_no like b.sort_no || ''|| '%' and b.dept_code ='37010001'
)
zjf_1175
2012-06-20 · TA获得超过407个赞
知道小有建树答主
回答量:297
采纳率:0%
帮助的人:110万
展开全部
这个函数是用来连接字符串,sqlserver中没有,可以使用 + 连接符号搞定
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式