SQL试题练习

1、查询员工的全名,email和电话 SELECT concat(first_name,',',last_name),email,phone_int FROM employees; //concat(str1, str2,...)功能:将多个字符串链接成一个字符串 例1:select concat (id, name, score) as info from employee; 例2:select
相关文章
相关标签/搜索