题解 | #将employees表的所有员工的last_name和first_name拼接起来作为Name#
将employees表的所有员工的last_name和first_name拼接起来作为Name
http://www.nowcoder.com/practice/6744b90bbdde40209f8ecaac0b0516fe
知识点
- 拼接使用concat或者concat_ws,本题也可使用concat(last_name,' ',first_name)
- concat_ws(separator,str1,str2,…)是concat()的特殊形式。第一个参数是其它参数的分隔符。分隔符放在要连接的两个字符串之间。
代码
select
concat_ws(' ',last_name,first_name)as Name
from employees