首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

mysql转sqlserver的sql语句解决思路

2013-10-21 
mysql转sqlserver的sql语句mysql函数中concat在sqlserver函数中怎么用例如$sql. and concat(bs.custom_

mysql转sqlserver的sql语句
mysql函数中concat在sqlserver函数中怎么用
例如$sql.= " and concat(bs.custom_addr_province,bs.custom_addr_city,bs.custom_addr_detail) like '%".$searchcondition["custom_addr"]."%'"; MySQL SQL SQL?Server
[解决办法]
and concat(bs.custom_addr_province,bs.custom_addr_city,bs.custom_addr_detail)→and bs.custom_addr_province+bs.custom_addr_city+bs.custom_addr_detail

热点排行