資料庫練習(學生表)

来源:https://www.cnblogs.com/hole/archive/2019/08/12/11339881.html
-Advertisement-
Play Games

創建表 1、創建學生表,分數表和課程表 create table student( sid int(11) primary key not null, sname char(25) not null, age int(11) not null, sex char(2) not null, depar ...


創建表

1、創建學生表,分數表和課程表

create  table student(

 sid     int(11) primary key not null,

 sname   char(25) not null,

 age     int(11) not null,

 sex     char(2) not null,

 department char(40) ,

 address  char(200) ,

 birthplace  varchar(256)

);

create  table sc(

  sid   int(11) not null,

  cid   int(11) not null,

  grade int(11)

);

create  table course(

  cid    int(11) not null primary key default 4,

  cname  char(40),

  teacher  char(40)

);

#以下是插入課程表的數據

delete from course ;

insert into course values('8108001','math','sandy');

insert into course values('8108002','english','sherry');

insert into course values('8108003','computer','sandy');

insert into course values('8108004','web','sandy');

insert into course values('8108005','java','sandy');

insert into course values('8108006','C languge','sherry');

insert into course values('8108007','python','xiaozhu');

insert into course values('8108008','testing','xiaozhu');

insert into course values('8108009','linux','sherry');

insert into course values('8108010','shell','sherry');

#以下是插入成績級表的數據

delete from sc;

insert into sc values('3108001','8108010','90');

insert into sc values('3108001','8108003','67');

insert into sc values('3108002','8108003','54');

insert into sc values('3108002','8108010','84');

insert into sc values('3108003','8108003','78');

insert into sc values('3108004','8108004','89');

insert into sc values('3108005','8108006','56');

insert into sc values('3108006','8108005','60');

insert into sc values('3108007','8108004','79');

insert into sc values('3108008','8108008','89');

insert into sc values('3108009','8108002','46');

insert into sc values('3108010','8108003','87');

insert into sc values('3108011','8108001','85');

insert into sc values('3108011','8108002','81');

insert into sc values('3108012','8108001','97');

insert into sc values('3108012','8108002','55');

insert into sc values('3108013','8108002','86');

insert into sc values('3108013','8108001','71');

insert into sc values('3108014','8108002','69');

insert into sc values('3108014','8108001','78');

insert into sc values('3108015','8108002','67');

insert into sc values('3108016','8108001','85');

insert into sc values('3108016','8108003','85');

insert into sc values('3108016','8108002','85');

insert into sc values('3108016','8108004','85');

insert into sc values('3108016','8108005','85');

insert into sc values('3108016','8108006','80');

insert into sc values('3108016','8108007','79');

insert into sc values('3108016','8108009','36');

insert into sc values('3108016','8108010','78');

insert into sc values('3108016','8108008','88');

insert into sc values('3108016','8108021','83');

insert into sc values('3108015','8108001','85');

insert into sc values('3108015','8108003','85');

insert into sc values('3108015','8108004','85');

insert into sc values('3108015','8108005','85');

insert into sc values('3108015','8108006','80');

insert into sc values('3108015','8108007','79');

insert into sc values('3108015','8108009','36');

insert into sc values('3108015','8108010','78');

insert into sc values('3108015','8108008','88');

insert into sc values('3108015','8108021','83');

#以下是插入學生信息數據

delete from student;

insert into student values('3108001','wang min',21,'f','computer-tec','zhongshan

road','jiangsu');

insert into student values('3108002','jidu',20,'m','english','zhongshan road','fujian');

insert into student values('3108003','wangqing',19,'f','computer-tec','zhongshan

road','jiangsu');

insert into student values('3108004','liuxin',23,'f','chinese','zhongshan road','shanghai');

insert into student values('3108005','ligu',22,'f','computer-tec','zhongshan road','jiangsu');

insert into student values('3108006','songjia',19,'m','english','zhongshan road','jiangsu');

insert into student values('3108007','huamao',20,'f','chinese','zhongshan road','shanghai');

insert into student values('3108008','zhujiao',21,'f','english','zhongshan road','jiangsu');

insert into student values('3108009','wuyi',23,'m','computer-tec','zhongshan road','jiangsu');

insert into student values('3108010','jilian',18,'f','chinese','zhongshan road','hunan');

insert into student values('3108011','linbiao',22,'m','computer-tec','zhongshan

road','jiangsu');

insert into student values('3108012','maoguai',21,'m','english','zhongshan road','fujian');

insert into student values('3108013','rongqi',23,'m','computer-tec','zhongshan

road','jiangsu');

insert into student values('3108014','sangzi',20,'f','chinese','zhongshan road','hunan');

insert into student values('3108015','surui',16,'f','computer-tec','zhongshan road','fujian');

insert into student values('3108016','liushaoqi',24,'m','english','zhongshan road','hunan');

commit;

 

 

問題列表

1.sandy老師所教的課程號、課程名稱;

select c.cid,cname from student s,sc,course c where s.sid=sc.sid and sc.cid=c.cid and teacher='sandy';

2.年齡大於20歲的女學生的學號和姓名;

select s.sid,sname from student s where age>20 and sex=f;

3.在學生表中按性別排序,且男在前女在後顯示記錄。

select * from student order by sex desc;

4.“wuyi”所選修的全部課程名稱;

select cname from student s,sc t,course c where s.sid=t.sid and t.cid=c.cid and sname='wuyi';

5.所有成績都在80分以上的學生姓名及所在系;

select DISTINCT sname,department from student s,sc t,course c where s.sid=t.sid and t.cid=c.cid and t.sid  not in (select sid from sc where grade<80 );

6.沒有選修“english”課的學生的姓名;

select sname from student where   not sid in(SELECT sid from sc where cid in(SELECT cid from

course where cname = 'english' ))

7.與“jilian”同鄉的男生姓名及所在系;

select sname,department from student where sex='m' and birthplace = (select birthplace from student where sname='jilian');

8.英語成績比數學成績好的學生;

select * from student s,(select t.sid,grade from sc t,course c,student s where c.cid=t.cid and s.sid=t.sid and cname = 'english') a,(select t1.sid,grade from sc t1,course c1,student s1 where c1.cid=t1.cid and s1.sid=t1.sid and cname = 'math') b where s.sid=a.sid and a.sid=b.sid and a.grade>b.grade;

9.選修同一門課程時,女生比所有男生成績都好的學生名單;

select * from student s,sc t,student s1,sc t1 where s.sid=t.sid and s1.sid=t1.sid and s.sid=s1.sid and s.sex='f'and s1.sex='m' and

t.cid=t1.cid and t.grade>t1.grade;

10.至少選修兩門及以上課程的學生姓名、性別;

select sname,sex from student s,sc t where s.sid=t.sid having count(t.cid)>=2

11.選修了sandy老師所講課程的學生人數;

select count(sid) from student s where sid in (select distinct sid from sc where cid in (select cid from course where

teacher='sandy'));

12.本校學生中有學生姓名/性別重覆的同學,請編寫腳本查出本校所有學生的信息,顯示學號,姓名,性別,總成績,對於姓名/性別重覆的學生信息只取總成績最高的那一條記錄。

select s.sid,sname,sex,sum(grade) from student s,sc t where s.sid=t.sid

group by  s.sid,sname;

13.“english”課程得最高分的學生姓名、性別、所在系;

select sname,sex,department from student where sid = (select sid from sc where grade =(select max(grade) from sc where cid= (select cid

from course where cname='english')));


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 【查看mysql最大鏈接數】 MariaDB [(none)]> show variables like 'max_connections'; + + + | Variable_name | Value | + + + | max_connections | 151 | + + + + + + | ...
  • 記錄一下今天被坑了一下午的BUG 就從半個月前說起吧 當時..................................................................................................................... ... ...
  • Win7 Eclipse 搭建spark java1.8(lambda)環境:WordCount helloworld例子 ...
  • 列子: 一條語句實現將'a,b,c'拆分成'a','b','c'三條記錄。 一、REGEXP_SUBSTR函數的使用說明: Regexp_Substr(String,pattern,position,occurrence ,modifier )一共包含了五個參數: String:操作的字元串; pa ...
  • http://pic62.nipic.com/file/20150318/8684504_093611837474_2.jpg ...
  • 今天準備學習MongoDB,沒想到下載之後伺服器端啟動不了,記錄一下問題和處理過程 一.安裝 在Ubuntu中安裝還是很簡單,直接:sudo apt install mongodb 二.啟動 啟動MongoDB伺服器端:輸入mongod (或者使用 sudo service mongodb star ...
  • 在公司工作中,會遇到mysql資料庫存儲於某個人的電腦上,大家要想連接mysql服務,裝有mysql服務的電腦就必須開啟遠程連接。 其實不僅僅是區域網,只要你有資料庫所在伺服器的公網IP地址都能連上。 一. 授權 1. 連接資料庫 mysql -uroot -p 2.選擇系統庫,mysql use ...
  • 參考文章:https://www.cnblogs.com/huyong/archive/2011/05/04/2036377.html在 PL/SQL 程式中,對於處理多行記錄的事務經常使用游標來實現使用有四個步驟:定義、打開、提取、關閉例子:09:52:04 SCOTT@std1> DECLARE... ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...