最近学习php+mysql执行操作,发现了这一篇实例代码
一,子选择基本用法数据表t1 数据表t2
I1 C1 I2 C2
1
2
3 A
C 2
3
4 C
A
先找两个表内都存在的数据
select i1 from t1 where exists(select * from t2 where t1.i1=t2.i2);
再找t1表内存在,t2表内不存在的数据
select i1 form t1 where not exists(select * from t2 where t1.i1=t2.i2);
需要注意:在这两种形式的子选择里,内层查询中的星号代表的是外层查询的输出结果。内层查询没有必要列出有关数据列的名字,田为内层查询关心的是外层查询的结果有多少行。希望大家能够理解这一点
in 和not in 子选择
在这种子选择里面,内层查询语句应该仅仅返回一个数据列,这个数据列里的值将由外层查询语句中的比较操作来进行求值。还是以上题为例
先找两个表内都存在的数据
select i1 from t1 where i1 in (select i2 from t2);
再找t1表内存在,t2表内不存在的数据
select i1 form t1 where i1 not in (select i2 from t2);
好象这种语句更容易让人理解,再来个例子
比如你想找到所有居住在A和B的学生。
select * from student where state in(‘A','B')
二, 把子选择查询改写为关联查询的方法。
1,匹配型子选择查询的改写
下例从score数据表里面把学生们在考试事件(T)中的成绩(不包括测验成绩!)查询出来。
Select * from score where event_id in (select event_id from event where type='T');
可见,内层查询找出所有的考试事件,外层查询再利用这些考试事件搞到学生们的成绩。
这个子查询可以被改写为一个简单的关联查询:
Select score.* from score, event where score.event_id=event.event_id and event.event_id='T';
下例可以用来找出所有女学生的成绩。
Select * from score where student_id in (select student_id form student where sex = ‘f');
可以把它转换成一个如下所示的关联查询:
Select * from score
Where student _id =student.student_id and student.sex ='f';
把匹配型子选择查询改写为一个关联查询是有规律可循的。下面这种形式的子选择查询:
Select * from tablel
Where column1 in (select column2a from table2 where column2b = value);
可以转换为一个如下所示的关联查询:
Select tablel. * from tablel,table2
Where table.column1 = table2.column2a and table2.column2b = value;
(2)非匹配(即缺失)型子选择查询的改写
子选择查询的另一种常见用途是查找在某个数据表里有、但在另一个数据表里却没有的东西。正如前面看到的那样,这种“在某个数据表里有、在另一个数据表里没有”的说法通常都暗示着可以用一个left join 来解决这个问题。请看下面这个子选择查询,它可以把没有出现在absence数据表里的学生(也就是那些从未缺过勤的学生)给查出来:
Select * from student
Where student_id not in (select student_id from absence);
这个子选择查询可以改写如下所示的left join 查询:
Select student. *
From student left join absence on student.student_id =absence.student_id
Where absence.student_id is null;
把非匹配型子选择查询改写为关联查询是有规律可循的。下面这种形式的子选择查询:
Select * from tablel
Where column1 not in (select column2 from table2);
可以转换为一个如下所示的关联查询:
Select tablel . *
From tablel left join table2 on tablel.column1=table2.column2
Where table2.column2 is null;
注意:这种改写要求数据列table2.column2声明为not null。
声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。TEL:177 7030 7066 E-MAIL:11247931@qq.com