mysql数据库简单知识的学习与总结7

Mysql函数 Concat 和Concat_ws()函数使用concat来进行字符之间的连接 对数据表两个字段之间的内容进行连接 Select concat  (first_name ,last_name) as  fullname  from test; 使用Concat_ws()函数指定分隔符来进行字符连接。 Select concat_ws(”*”,”你好”,”中国”,”人民”); For
相关文章
相关标签/搜索