8 个解决方案
#1
多啦:
APPEND FROM
INSERT - SQL
SELECT - SQL
APPEND FROM
INSERT - SQL
SELECT - SQL
#2
我有点印象好象是copy 什么什么的?
#3
select * from tableA
union all
select * from tableB
union all
select * from tableB
#4
copy to 是生成一个新的数据表,不能用已存在的表
#5
select * from tableA
union all
select * from tableB into table newtable
or
sele tableA
appe from tableB
union all
select * from tableB into table newtable
or
sele tableA
appe from tableB
#6
表关联问题命令!
#7
如果两表结构一样的话,使用append from,
否则使用sql语句:insert
否则使用sql语句:insert
#8
xiolig(凌霄) 说得对啊.
#1
多啦:
APPEND FROM
INSERT - SQL
SELECT - SQL
APPEND FROM
INSERT - SQL
SELECT - SQL
#2
我有点印象好象是copy 什么什么的?
#3
select * from tableA
union all
select * from tableB
union all
select * from tableB
#4
copy to 是生成一个新的数据表,不能用已存在的表
#5
select * from tableA
union all
select * from tableB into table newtable
or
sele tableA
appe from tableB
union all
select * from tableB into table newtable
or
sele tableA
appe from tableB
#6
表关联问题命令!
#7
如果两表结构一样的话,使用append from,
否则使用sql语句:insert
否则使用sql语句:insert
#8
xiolig(凌霄) 说得对啊.