Mysql与sql server的列的合并

Mysql  
SELECT concat(列1,列2) Nmae from 表名 
sql server
SELECT 列1+"|"+列2 Nmae from 表名
 或者 union all 
 
原文地址:https://www.cnblogs.com/kiss5523/p/5563921.html