考察 MYSQL 的 concat 函数,和 excel 的 concatenate 函数用法基本一致
concat(col1,col2)
需要注意的是中间加空格,是' ',而不是

select concat(last_name,' ',first_name)
from employees