VFP中关于连接查询的问题 where... = ... 和 join...on...结果的区别?
selecta,b,c;fromtemp1,temp2;wheretemp1.a=temp2.d;intotabletemp和selecta,b,c;fromtemp1j...
select a,b,c;
from temp1,temp2;
where temp1.a=temp2.d;
into table temp
和
select a,b,c;
from temp1 join temp2;
on temp1.a=temp2.d;
into table temp
区别? 展开
from temp1,temp2;
where temp1.a=temp2.d;
into table temp
和
select a,b,c;
from temp1 join temp2;
on temp1.a=temp2.d;
into table temp
区别? 展开
2个回答
展开全部
where temp1.a=temp2.d;
是 inner join 的效果
关联字段同时存在于2个表
temp1 join temp2;
是FULL join 是意思
关联字段存在于任何一个表就可以
是 inner join 的效果
关联字段同时存在于2个表
temp1 join temp2;
是FULL join 是意思
关联字段存在于任何一个表就可以
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2012-03-19
展开全部
第1种相当于Inner Join,即示temp1,temp2的交集
第2种可以包括Left Join,Right Join,Full Join,Inner Join具体含意看单词就明白了
第2种可以包括Left Join,Right Join,Full Join,Inner Join具体含意看单词就明白了
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询