题解 | #将employees表中的所有员工的last_name和first_name通过引号连接起来。#
将employees表中的所有员工的last_name和first_name通过引号连接起来。
http://www.nowcoder.com/practice/810bf4ee3ac64949b08983aa66ec7bee
select concat(last_name,"'",first_name)from employees
*这个题主要考虑concat的用法
1.concat前面是select
2.concat(a,"c",b) *
