對於教學資料庫的基本表1查詢所有男同學的資訊2查詢年齡大

2021-04-19 10:12:07 字數 2875 閱讀 1368

1樓:匿名使用者

select * from 學生表 where 性別=『男』

select 女同學學號 from 學生表 where (年齡》18 and 年齡<20)and 性別=『女』

sql語言1.查詢每個學生及其選修課程的情況2、查詢所有年齡小於18周歲的女生的學號和姓名

2樓:匿名使用者

(1) select t.sname,c.cpno fromstudent t

left join sc s (s.sno=t.sno)left join course c (c.

cno=s.cno)(2) select t.sno,t.

sname from student t

where t.s***='女' and t.sage <18不行了在找我,可以密我qq。

3樓:匿名使用者

1 select student.sno, sc.cnofrom student,sc

where student.sno = sc.cno;

意思就是查詢每個學生的情況,且列出相應的選修情況2 select student.s***, student.sage

from student

where student.sage<18 and student.s***=2;

's***=2意思就是等於女的意思,一般在這個表裡s***字段設定為數字型1為男2為女,也可以設定成字元型,但不如數字型使用方便

4樓:真愛的胸懷

select sno,sname,from student where (sage<18 and s***='女')

以上是第二個語句的答案 ,第乙個語句有歧義

5樓:匿名使用者

select a.sno,a.sname,b.cnamefrom student a,cours b,sc cwhere a.sno=c.sno

and b.cno=c.cno

group by a.sno,a.sname,b.cnameselect sno,sname from studentwhere s***='女' and sage<18

對於教學資料庫的三個基本表:      學生 s(s#,sname,age,***)      學習 sc(s#,c#,grade)

6樓:鬼知曉

1.select sname,sno from s where age<22;

你給的資訊不詳細啊

7樓:匿名使用者

1 select s,sname from s where age<22 and ***='女'

2,select count(*) from sc3 select sname,age where ***='男' and age>(select max(age) from s where ***='女');

樓主是在考試中?問題

版太多了權呀

sql語句的一道題 三個基本表:學生表(student)、課程表(course)、學生選課表(sc)

8樓:匿名使用者

select * from course

select sname,sage from student where sdept = '計算機系'

select * from sc where 70 <= grade and grade =>80

select sname,sage from student where sdept = '計算機系' and s***='男'

。。。。

9樓:被減速的飛機

自己看手冊把,都很簡單的,題太多,不好回答,,

10樓:匿名使用者

老師留的作業嗎?為你好,自己做吧。

資料庫原理與應用

11樓:匿名使用者

(1)select cname,teacher from 課程 where teacher='liu'

(2)select s#,sname form 學生 where age>23

(3)select sname from 學生,學習

,課程 where 學生.s#=學習.s# and 學習.c#=課程.c# and ***='女'

(4)select c# from 學習sc,學生s where sname like 'wang%' and c# not in(select c# from 課程c)

(5)select s# from s where 2<=(select count(*) from sc whre sc.s#=s.s#)

第六個不太會

(7)select s# from sc where c# in(select c# from c where teacher='劉%')

資料庫題,設有乙個學生—課程資料庫,其中包括三個表 50

sql查詢命令實現以下。1.查閱學生表student中學生的學號,姓名和出生日期,結果年齡從大到小

12樓:

--第一題來

select 學號

源bai,姓名,出生du日期zhi from student order by 出生日期

--第二題

select a.學號,a.姓名 from student a inner join score b on a.學號=b.學號

where b.課程編號dao='0101' and b.成績>=90

mysql資料庫查詢的問題,mysql 資料庫查詢的乙個問題

select from select t.num if category id t.category id,num 1,1 as cal rank,category id t.category id from select from goods order by category id asc go...

資料庫的查詢語句的別名怎麼起翱,資料庫的查詢語句的別名怎麼起啊?

直接把語句用括號括起來,然後as別名即可。如 select a.from select from emp where deptno 10 as a,select from emp where sal 2000 as b where a.empno b.empno 語句中a和b就是別名,但注意查詢中欄...

查詢MYSQL同資料庫2張表的不同字段值語句怎麼寫

select log.student.name from log left join student on log.id student.id and log.tim student.tim 這個是bai用的du左聯合 zhi的方 dao式 版也可以 權select log.student.name...