vfp查询命令
合集下载
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
第二种方法:把Excel表另存为“Microsoft Excel 5.0 和 97 (XLS)” 格式后,再导入。
查重
select * from book1 where 列2 in(select 列2 from book2)
select * from book2 where 列2 in(select 列2 from book1)
select * from a where a.id not in (select b.id from b)
union all
select * from b where b.id not in (select a.id from a)
身份证号选中列,进行分列,再导入。
备注:数据表的命名必须以字母为开头
步骤:1导入EX表,创Biblioteka 数据表 2文件新建数据库
3在工具栏数据库,添加对比的表,可全部添加
4用两个数据表查询重复的命令格式来查重
注意:excel导入过程中出现c0005错误时,
第一种方法:可将excel表复制到vfp导出的表中,再导入即可。
vf里面的两个数据表查询重复的命令格式
select g3.* from g3 where g3.身份证号 in(select a from zg09c)
select book2.* from book2 where book2.c in(select 身份证号 from 1g)
查不同
select * from tableB where name not in (select name from tableA)
select * from tableB
where name not in (select distinct name from tableA)
然后建立本地视图