为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

米琪卡哇伊 2018-11-22 23:19:04
mysql函数中concat在sqlserver函数中怎么用
查看完整描述

1 回答

?
慕无忌1623718

TA贡献1744条经验 获得超4个赞

本来程序数据库用的是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'
)

查看完整回答
反对 回复 2018-12-16
  • 1 回答
  • 0 关注
  • 1351 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信