第一頁
返回
繼續
最後一頁
概覽
影像
多資料表
select table1.field1, table2.field2 from table1,table2 where xxxx
用「表格名.欄位名」取得某個表格中的欄位
通常用兩個以上的資料表,都會有join(關聯)的運算存在
select A.field1, B.filed2 from table1 as A,table2 as B where xxxx
請先測試 select * from table1,table2 看看結果