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
方案二、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免费源码下载(责任编辑:IT科技类资讯)