SELECT CONCAT('a','n','o') as 查询字段拼接; # 字段拼接SELECT CONCAT(employees.last_name,employees.first_name) as 姓名 from employees; # 字段拼接 + 别名