1樓:匿名使用者
select 課程號,開課自系 from 課程 where 任課教師='***';
select 學號,姓名 from 學生 where 所在系= '計算機系' and 性別='女' and 年齡>20;
select 姓名 from 學生 where 性別='女' and not exists (
select 課程號 from 課程 where 任課教師='劉老師');
select course.課程號,course.開課系 from 課程 course,學習 sc,學生 student where student.
學號=sc.學號 and course.課程號=sc.
課程號 and student.姓名='王樂';
select 學號,姓名 from (select s.學號,s.姓名,count(r.
課程號) num from 學生 s,學習 r where s.學號=r.學號 group by s.
學號,s.姓名) where num>=3;
2樓:匿名使用者
select 課程號,開課系 from 課程 where 任課老師='***';
select 學號,姓名 from 學生 where 年齡》20;
select 姓名
from 學生
where 性別='女回'
and not exists ( select '任課老師'
from 課程,學習
答where 學生.學號=學習.學號
and 課程.課程號=學習.課程號
and 任課老師='劉老師');
為了100分也不寫了,問題太多 樓主太懶
一道SQL語句急急
sql 的print輸出字元變數,問題是 w是int型別,不能於字串相連線 declare year int,month int,day int select year 2000,month 10 set day case when month 1 or month 3 or month 5 or ...
問一道數列題目的小細節,問一道數列的小題
這道題是想告訴你一個規律 每當數列中n為奇數的時候 都是有一定的規律的 而當n為偶數時,每個數都是相同的 從題給的已知條件入手 因為無法直接求其中的規律 所以只能多求幾個數用觀察法來觀察規律 1 1 a2010 a2012 又因為a2010 a2012 可求得a2010 5 1 2 a n 2 f ...
問一道簡單的Java題目
上面這位井峰明輝仁兄 catch numberformatexception e 這句你應該理解吧?numberformatexception 這個異常.public class check class testelse catch ioexception e catch numberformate...