回 帖 发 新 帖 刷新版面

主题:菜鸟请教各位大侠两表之间的数据连接

举例:A表有1000条记录,B表内容是A表复制出来的500条记录,那怎么能知道除B表内容以外,A表中另外500条记录,最好还能成为一个新表。

回复列表 (共2个回复)

沙发

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不是很熟悉

板凳

用与复制B表相反的条件复制另一个表

我来回复

您尚未登录,请登录后再回复。点此登录或注册