题解 | #将employees表中的所有员工的last_name和first_name通过引号连接起来。#
将employees表中的所有员工的last_name和first_name通过引号连接起来。
http://www.nowcoder.com/practice/810bf4ee3ac64949b08983aa66ec7bee
CONCAT(str1, str2,...)的含义是将 str1,str2,... 直接连接起来
完整代码:
SQLite
SELECT last_name || "'" || first_name FROM employees
MySQL
select CONCAT(last_name,"'",first_name)
from employees
SQL练习 文章被收录于专栏
已完成牛客的SQL练习。接下来是算法的练习