SQL查詢:select * from a,b與內鏈接

select * from a,b   不加條件的話是笛卡爾乘積。select select * from a,b where a.id = b.id   加條件至關於內鏈接,join 等價於select * from a inner join b on a.id = b.id
相關文章
相關標籤/搜索