最近學會怎麼使用 Alias,
底下是查詢 Plesk psa 資料庫
把 domains 與 hosting 這兩個 TABLE 結合在一起,而 domains 用 a 替代, hosting 用 b 替代,縮短語法,也減少混淆
select a.*,b.* from domains as a,hosting as b where a.id = b.dom_id
不然原本要這麼長
select domains.*,hosting.* from domains hosting where domains.id = hosting.dom_id
留言