题解 | #将employees表中的所有员工的last_name和first_name通过引号连接起来。#
将employees表中的所有员工的last_name和first_name通过引号连接起来。
http://www.nowcoder.com/practice/810bf4ee3ac64949b08983aa66ec7bee
concat 连接不同列以及字符串
select concat(last_name,"'",first_name) as name from employees;