sql語句中as的意思是什麼

微小東發表於2016-01-02
別名,或者說給顯示的結果改名。比如,select name as 姓名 from student.

意思是查詢student表中的name欄位,但是在顯示的時候顯示姓名(而不是表中的name)


還比如下面:concat(path,',',id)函式用","把前後欄位【path和id】連線起來形成一個新欄位   改名為fullpath

 select id,catename,path,concat(path,',',id) as fullpath from likecate where 1 order by fullpath asc;


相關文章