union這個銜接是有甚麼用的和INNER JOIN有甚麼差別。本站提示廣大學習愛好者:(union這個銜接是有甚麼用的和INNER JOIN有甚麼差別)文章只能為提供參考,不一定能成為您想要的結果。以下是union這個銜接是有甚麼用的和INNER JOIN有甚麼差別正文
Inner join 是兩張表做交連後外面前提雷同的部門記載發生一個記載集,
union是發生的兩個記載集(字段要一樣的)並在一路,成為一個新的記載集
Select A.Field1,B.field2 from Table1 A inner join Table2 B on a.Field2=b.Field2 where ..........
Select Field1 from Table1 union Select Field2 from table2
計劃2、
select a.id,a.title,b.content from 表格1 as a,表格2 as b where a.id=b.id order by a.id
rs("id")
rs("title")
rs("content")
另:
新建一個表xxx
sql="insert into xxx select P.id,P.title,M.content from picture P inner join miaoshu M on P.id=M.id"
conn.execute sql