mysql函数中concat在sqlserver函数中怎么用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql函数中concat在sqlserver函数中怎么用相关的知识,希望对你有一定的参考价值。
本来程序数据库用的是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'
) 参考技术A 这个函数是用来连接字符串,sqlserver中没有,可以使用 + 连接符号搞定
mysql中group_concat函数的作用
一 group_concat函数的作用
group_concat函数: 把name相同的code拼接在一起,放到另外一列中,用逗号进行分割。
1.整个表中的数据
2.进行分组
以上是关于mysql函数中concat在sqlserver函数中怎么用的主要内容,如果未能解决你的问题,请参考以下文章
sqlserver模仿mysql函数FIND_IN_SET,group_concat的功能
在 SQL Server 中完成 MYSQL 的 Group_Concat [重复]