SQL练习题之子查询
摘要:
题目是 create table salesproduct (sid int,pid int)要求:查出pid中包含1,2,(3或4)的sid方法一使用独立子查询:View Code select sidfrom salesproductwhere pid=1andsid in(select sid from salesproduct where pid=2 )and (sid in(select sid from salesproduct where pid=3)or sid in (select sid from salesproduct where pid=4))方法二:使用关联子查询s 阅读全文
posted @ 2011-08-05 13:29 tneduts 阅读(583) 评论(1) 推荐(0) 编辑