SQL: student表: s_id int s_name vachar20 class表: c_id int c_name vachar20选课表:
xuanke id int s_id int c_id int 用SQL语句写出同时选择了二门课程的学生信息! 写出在学生表升序排列后,从10到20位的学生的信息!
慕田峪4524236
浏览 341回答 2
2回答
弑天下
选择了二门课程的学生信息:select * from 学生表 as 学 where (select Count(id) from 选课表 where s_id=学.s_id)=2在学生表升序排列后,从10到20位的学生的信息:select top 10 * from 学生表 where id not in(select top 10 id from 学生表 order by id ) order by id注:你在这里没有说明是按照哪一个字段的的升序进行排列,我暂且给说按id进行升序排列!