主题:菜鸟请教各位大侠两表之间的数据连接
xlraul
[专家分:0] 发布于 2009-06-16 12:26:00
举例:A表有1000条记录,B表内容是A表复制出来的500条记录,那怎么能知道除B表内容以外,A表中另外500条记录,最好还能成为一个新表。
回复列表 (共2个回复)
沙发
琅拿度 [专家分:2820] 发布于 2009-06-16 13:15:00
select a
copy to temp1
use temp1 in 0
select temp1
alter table temp1 add column at_b c(1)
select b
scan
update temp1 set temp1.at_b='t' where temp1.字段1=b.字段1 and ...(一直到所有字段)
endscan
select temp1
copy to c fields except at_b for upper(at_b)<>"T"
use
dele file temp1
不知道有没有更好的方法,SELECT SQL不是很熟悉
板凳
sywzs [专家分:5650] 发布于 2009-06-17 06:02:00
用与复制B表相反的条件复制另一个表
我来回复