concat与concat_ws区别

select concat('大','小') as size from 表

查询出结果为:大小

select concat('大',NULL) as size from 表

查询出结果为:null

concat中又一个参数为NULL,查出来的就为NULL

 

 

select concat_ws('_','大','小','中') as size from 表

查询出结果为:大_小_中

select concat_ws('_','大','小',NULL) as size from 表

查询出结果为:大_小

转载于:https://www.cnblogs.com/Lcy-Sun0419/p/7843912.html

你可能感兴趣的:(concat与concat_ws区别)