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
相關文章
相關標籤/搜索