SELECT last_name || "'" || first_name
FROM employees
/*MySQL代码:
SELECT CONCAT(CONCAT(last_name,"'"),first_name)
FROM employees
*/
MySQL不支持||连接字符串;