select concat_ws('\'',last_name,first_name) from employees;

比使用concat运行要快。 select concat(last_name,''',first_name) from employees;