当前位置: 代码迷 >> Sql Server >> mysql转sqlserver的sql语句解决思路
  详细解决方案

mysql转sqlserver的sql语句解决思路

热度:87   发布时间:2016-04-24 20:50:15.0
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
  相关解决方案