Visual FoxPro中的SQL嵌套查询
发布网友
发布时间:2022-04-27 10:10
我来回答
共4个回答
热心网友
时间:2023-09-11 20:50
foxpro 中 SQL 是不能嵌套的。
SQL IN 子句支持第2个 SQL 语句,但不是你这样用
(从t1中筛选id符合t2中id的数据)
select * from t1 where t1.id IN(select t2.id from t2)
SQL UNION 子句支持第2个 SQL 语句,但也不是你这样用
(把 t1 和 t2 合并)
select * from t1 union select * from t2
热心网友
时间:2023-09-11 20:51
VFP只支持标准SQL,只有select in 语句支持2层嵌套
select * from (select * from t1)
改成 select * from ((select * from t1) as t2) 没有本质区别
关于SQL 语句,建议学习SQL Server
热心网友
时间:2023-09-11 20:51
让第一个查询生成一张游标
select * from t1 INTO CURSOR c_t1
再从游标中查询
select * from c_t1
热心网友
时间:2023-09-11 20:52
select * from (select * from t1) t2
另外,团IDC网上有许多产品团购,便宜有口碑