SQL實戰50.將employees表中的所有員工的last_name和first_name通過(‘)連線起來。

yuxiaoyanran2020發表於2020-12-01

題目

在這裡插入圖片描述

解答

select concat_ws("'",last_name,first_name) as name
from employees;

相關文章