数据库concat函数

因文件改动读到老大写的代码 发现该函数  所以记录一下

concat  用法就是将数据库不同的字段串起来  比如要查询  name   age  sex  最终想出来的结果是连起来的

就可以用该函数   而不用再将结果拼接

eg:select id,concat(name,sex,age) as info from usr;  这样就会输出结果   info=>小明男12

该函数中间可以拼接字符用来分割  

eg:select id,concat(name,’ ‘,sex,’ ‘,age) as info from usr;  这样就会输出结果   info=>小明 男 12  中间有空格

 

切记字符串中有null的字段  那输出结果就会是null

    原文作者:only一颗白菜
    原文地址: https://blog.csdn.net/whyicantusechinese/article/details/109640624
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞