1. 程式人生 > >MYSQL使用方法

MYSQL使用方法

not in 操作 ref 標識 tun 相同 exists getdate lec

顯示所有數據庫:show databases;

創建數據庫:create database 數據庫名; 刪除數據庫:drop database 數據庫名; 查看表結構: describe(desc) 表名; 查看表詳細結構:show create table 表名; 修改表: 1.修改表名 alter table 舊表名 rename 新表名; 2.修改字段 alter table 表名 change 舊屬性名 新屬性名 新數據類型 3.增加字段 alter table 表名 add 屬性名1 數據類型 [完整約束條件] [first | after 屬性名2] 4.刪除字段 alter table 表名 drop 屬性名 創建表: 語法: create table 表名(屬性名 數據類型 [完整性約束條件]); 例子: create table t_booktype( id int primary key auto_increment, bookTypeName varchar(20), bookTypeDesc varchar(200) ); create table t_book(id int primary key auto_increment, bookName varchar(20), author varchar(10), price decimal(6,2), bookTypeId int, constraint `fk` foreign key(`bookTypeId`) references `t_bookType`(`id`) ); 約束條件: primary key:標識該屬性為該表的主鍵,可以唯一的標識對應的記錄。 foreign key:標識該屬性為該表外鍵,與某表的主鍵關聯。 not null:標識該屬性不能為空。 unique:標識該屬性的值是唯一的。 auto_increment:標識該屬性的值自動增加。 default:為該屬性設置默認值。 1.查詢一張表: select * from 表名; 2.查詢指定字段:select 字段1,字段2,字段3….from 表名; 3.where條件查詢:select 字段1,字段2,字段3 frome 表名 where 條件表達式; 例:select * from t_studect where id=1; select * from t_student where age>22; 4.帶in關鍵字查詢:select 字段1,字段2 frome 表名 where 字段 [not]in(元素1,元素2); 例:select * from t_student where age in (21,23); select * from t_student where age not in (21,23); 5.帶between and的範圍查詢:select 字段1,字段2 frome 表名 where 字段 [not]between 取值1 and 取值2; 例:select * frome t_student where age between 21 and 29; select * frome t_student where age not between 21 and 29; 6.帶like的模糊查詢:select 字段1,字段2… frome 表名 where 字段 [not] like ‘字符串’; “%”代表任意字符; “_”代表單個字符; 例:select * frome t_student where stuName like ‘張三”; select * frome t_student where stuName like ‘張三%”; select * frome t_student where stuName like ‘%張三%”;//含有張三的任意字符 select * frome t_student where stuName like ‘張三_” 7.空值查詢:select 字段1,字段2…frome 表名 where 字段 is[not] null; 8.帶and的多條件查詢: select 字段1,字段2…frome 表名 where 條件表達式1 and 條件表達式2 [and 條件表達式n] 例:select * frome t_student where gradeName=’一年級’ and age=23; 9.帶or的多條件查詢 select 字段1,字段2…frome 表名 where 條件表達式1 or 條件表達式2 [or 條件表達式n] 例:select * frome t_student where gradeName=’一年級’ or age=23;//或者,條件只要滿足一個 10.distinct去重復查詢:select distinct 字段名 from 表名; 11.對查詢結果排序order by:select 字段1,字段2…from 表名 order by 屬性名 [asc|desc] 例:select * frome t_student order by age desc;//降序,從大到小 select * frome t_student order by age asc;//升序,asc默認可以不寫 12.分組查詢group by group by 屬性名 [having 條件表達式][with rollup] 子查詢 1.帶in關鍵字的子查詢(一個查詢語句的條件可能落在另一個select語句的查詢結果中) select * from t_book where bookType in(select id from t_bookType); select * from t_book where bookType not in(select id from t_bookType); 2.帶比較運算符的子查詢(子查詢可以使用比較運算符) select * from t_book where price>=(select price from t_priceLevel where priceLevel=1); 3.帶exists關鍵字的子查詢(加入子查詢查詢到記錄,則進行外層查詢,否則,不執行外層查詢) select * from t_book where exists(select * from t_booktype); select * from t_book where not exists(select * from t_booktype); 4.帶any關鍵字的子查詢(any關鍵字表示滿足其中任一條件) select * from t_book where price>= any(select price from t_priceLevel); 5.帶all關鍵字的子查詢(all關鍵字表示滿足所有條件) select * from t_book where price>= all(select price from t_priceLevel); 合並查詢 1.union 使用union關鍵字是,數據庫系統會將所有的查詢結果合並到一起,然後去掉相同的記錄; select id from t_book union select id from t_bookType; 2.union all 使用union all,不會去除掉重復的記錄; select id from t_book union all select id from t_bookType; 插入操作 插入一條記錄:insert into t_book values(null,‘我愛我家‘,20,‘張三‘,1); 插入指定字段:insert into t_book(bookName,author) values(‘我愛我家‘,‘張三‘); 插入多個值:insert into t_book(bookName,author) values(‘我愛我家‘,‘張三‘),(‘我家‘,‘李四‘); 更新操作 更新一條數據:update t_book set bookName=‘java編程思想‘,price=120 where id=1; 更新幾條數據: update t_book set bookName where bookName like ‘%我愛我家%‘; 刪除操作 刪除一條數據:delete t_book where id=5; 刪除多條數據:delete t_book where bookName=‘我‘; ALTER
TABLE:添加,修改,刪除表的列,約束等表的定義。 查看列:desc 表名; 修改表名:alter table t_book rename to bbb; 添加列:alter table 表名 add column 列名 varchar(30); 刪除列:alter table 表名 drop column 列名; 修改列名MySQL: alter table bbb change nnnnn hh int; 修改列名SQLServer:exec sp_rename‘t_student.name‘,‘nn‘,‘column‘; 修改列名Oracle:lter table bbb rename
column nnnnn to hh int; 修改列屬性:alter table t_book modify name varchar(22); sp_rename:SQLServer 內置的存儲過程,用與修改表的定義。 MySQL 查看約束,添加約束,刪除約束 添加列,修改列,刪除列 查看表的字段信息:desc 表名; 查看表的所有信息:show create table 表名; 添加主鍵約束:alter table 表名 add constraint 主鍵 (形如:PK_表名) primary key 表名(主鍵字段); 添加外鍵約束:alter table 從表 add
constraint 外鍵(形如:FK_從表_主表) foreign key 從表(外鍵字段) references 主表(主鍵字段); 刪除主鍵約束:alter table 表名 drop primary key; 刪除外鍵約束:alter table 表名 drop foreign key 外鍵(區分大小寫); 修改表名:alter table t_book rename to bbb; 添加列:alter table 表名 add column 列名 varchar(30); 刪除列:alter table 表名 drop column 列名; 修改列名MySQL: alter table bbb change nnnnn hh int; 修改列名SQLServer:exec sp_rename‘t_student.name‘,‘nn‘,‘column‘; 修改列名Oracle:alter table bbb rename column nnnnn to hh int; 修改列屬性:alter table t_book modify name varchar(22); sp_rename:SQLServer 內置的存儲過程,用與修改表的定義。

-第一題 查詢Student表中的所有記錄的Sname、Ssex和Class列。
select Sname,Ssex,Class from student

--第二題 查詢教師所有的單位即不重復的Depart列。
select distinct Depart from Teacher

--第三題 查詢Student表的所有記錄。
select * from student

--第四題 查詢Score表中成績在60到80之間的所有記錄。
select * from Score where Degree between 60 and 80

--第五題 查詢Score表中成績為85,86或88的記錄。
select * from Score where Degree in (‘85‘,‘86‘,‘88‘)

--第六題 查詢Student表中“95031”班或性別為“女”的同學記錄。
select * from student where Class=‘95031‘ or Ssex=‘女‘

--第七題 以Class降序查詢Student表的所有記錄。
select * from student order by Class desc

--第八題 以Cno升序、Degree降序查詢Score表的所有記錄。
select * from Score order by Cno asc,Degree desc

--第九題 查詢“95031”班的學生人數。
select count(*) from student where Class=‘95031‘ --*可以換成主鍵值

--第十題 查詢Score表中的最高分的學生學號和課程號。(子查詢或者排序)
select SNO,CNO from Score where Degree=(select MAX(Degree) from Score)

--第十一題 查詢每門課的平均成績。
select Cno,AVG(Degree) as 平均分 from Score group by Cno

select Cname from Course where Cno in (select Cno a from Score group by Cno)
union
select Cno,AVG(Degree) from Score group by Cno


--第十二題 查詢Score表中至少有5名學生選修的並以3開頭的課程的平均分數。
select AVG(Degree ) from Score where Cno like ‘3%‘ group by Cno having COUNT(Cno)>4

--第十三題 查詢分數大於70,小於90的Sno列。
select sno from Score where Degree between 70 and 90

--第十四題 查詢所有學生的Sname、Cno和Degree列。
select Sname,Cno,Degree from student join Score on student.Sno=Score.Sno

--第十五題 查詢所有學生的Sno、Cname和Degree列。
select Sno,Cname,degree from Score join Course on Course.Cno=Score.Cno

--第十六題 查詢所有學生的Sname、Cname和Degree列。
select student.Sname,Cname,degree from student join Score on student.Sno=Score.Sno join Course on Course.Cno=Score.Cno

--第十七題 查詢“95033”班學生的平均分。
select AVG(Degree) from Score where Sno in (select Sno from student where Class=‘95033‘)

select AVG(Degree) from Score,student where student.Sno=Score.Sno and Class=‘95033‘

--第十八題 假設使用如下命令建立了一個grade表:
create table grade(low int,upp int,rank char(1))
insert into grade values(90,100,‘A‘)
insert into grade values(80,89,‘B‘)
insert into grade values(70,79,‘C‘)
insert into grade values(60,69,‘D‘)
insert into grade values(0,59,‘E‘)
--現查詢所有同學的Sno、Cno和rank列。

select Sno,Cno,Degree,[RANK] from grade join Score on Score.Degree between low and upp

select Sno,Cno,Degree,[RANK] from Score,grade where Degree between low and upp

--第十九題 查詢選修“3-105”課程的成績高於“109”號同學成績的所有同學的記錄。
select * from student,Score where Score.Cno=‘3-105‘ and student.Sno=Score.Sno and Score.Degree>(select Degree from Score where Cno=‘3-105‘ and Sno=‘109‘)

--第二十題 查詢score中選學多門課程的同學中分數為非最高分成績的記錄。
select * from Score a where Degree <(select MAX(degree) from Score b where a.Cno=b.Cno) and Sno in(select Sno from Score group by Sno having count(*)>1)

--第二十一題 查詢成績高於學號為“109”、課程號為“3-105”的成績的所有記錄。
select * from student,Score where student.Sno=Score.Sno and Score.Degree>(select Degree from Score where Cno=‘3-105‘ and Sno=‘109‘)

--第二十二題 查詢和學號為107的同學同年出生的所有學生的Sno、Sname和Sbirthday列。
select Sno,Sname,Sbirthday from student where year(student.Sbirthday)=(select year(Sbirthday) from student where Sno=‘107‘)

--第二十三題 查詢“張旭“教師任課的學生成績。
--select Degree from Score,Teacher,Course where Teacher.Tname=‘張旭‘ and Teacher.Tno=Course.Tno and Course.Cno=Score.Cno

select Sno,Cno,Degree from Score where Cno in (select Cno from Course where Tno in (select Tno from Teacher where Tname=‘張旭‘))

--第二十四題 查詢選修某課程的同學人數多於5人的教師姓名。
select Tname from Teacher where Tno in (select Tno from Course where Cno in (select Cno from Score group by Cno having COUNT(*)>5) )

--第二十五題 查詢95033班和95031班全體學生的記錄。
select * from student where Class=‘95033‘ or Class=‘95031‘

--第二十六題 查詢存在有85分以上成績的課程Cno.
select distinct cno from Score where Degree>85

--第二十七題 查詢出“計算機系“教師所教課程的成績表。
select sno,Cno ,Degree from Score where Cno in (select Cno from Course where Tno in (select tno from Teacher where Depart=‘計算機系‘))

--第二十八題 查詢“計算機系”與“電子工程系“不同職稱的教師的Tname和Prof。使用相關子查詢
select Tname,Prof from Teacher a where Prof not in(select Prof from Teacher b where a.Depart!=b.Depart)

--第二十九題 查詢選修編號為“3-105“課程且成績至少高於選修編號為“3-245”課程的同學的Cno、Sno和Degree,並按Degree從高到低次序排序。
select Cno,Sno,Degree from Score a where (select Degree from Score b where Cno=‘3-105‘ and b.Sno=a.Sno)>=(select Degree from Score c where Cno=‘3-245‘ and c.Sno=a.Sno) order by Degree desc


select * from Score where Cno=‘3-105‘ and Degree >any(select Degree from Score where Cno=‘3-245‘)

--第三十題 查詢選修編號為“3-105”課程且成績高於選修編號為“3-245”課程的同學的Cno、Sno和Degree.
select Cno,Sno,Degree from Score a where (select Degree from Score b where Cno=‘3-105‘ and b.Sno=a.Sno)>(select Degree from Score c where Cno=‘3-245‘ and c.Sno=a.Sno)

--第三十一題 查詢所有教師和同學的name、sex和birthday.
select distinct Sname as name,Ssex as sex,Sbirthday as birthday from student
union
select distinct Tname as name,Tsex as sex,Tbirthady as birthday from Teacher

--第三十二題 查詢所有“女”教師和“女”同學的name、sex和birthday.
select distinct Sname as name,Ssex as sex,Sbirthday as birthday from student where Ssex=‘女‘
union
select distinct Tname as name,Tsex as sex,Tbirthady as birthday from Teacher where Tsex=‘女‘

--第三十三題 查詢成績比該課程平均成績低的同學的成績表。
select Sno,Cno,Degree from Score a where a.Degree<(select AVG(Degree) from Score b where a.Cno=b.Cno)

--第三十四題 查詢所有任課教師的Tname和Depart.
select Tname,Depart from Teacher where Tname in (select distinct Tname from Teacher,Course,Score where Teacher.Tno=Course.Tno and Course.Cno=Score.Cno)

select Tname,Depart from Teacher where tno in (select tno from course where Cno in (select distinct Cno from Score))

--第三十五題 查詢所有未講課的教師的Tname和Depart.
select Tname,Depart from Teacher where Tname not in (select distinct Tname from Teacher,Course,Score where Teacher.Tno=Course.Tno and Course.Cno=Score.Cno)
--第三十六題 查詢至少有2名男生的班號。
select Class FROM student where Ssex=‘男‘ group by Class having COUNT(*)>1


--第三十七題 查詢Student表中不姓“王”的同學記錄。
select * from student where Sname not like (‘王%‘)

--第三十八題 查詢Student表中每個學生的姓名和年齡。
select Sname,YEAR(GETDATE())-year(Sbirthday) from student

--第三十九題 查詢Student表中最大和最小的Sbirthday日期值。
select MAX(Sbirthday) as 最大,MIN(Sbirthday) as 最小 from student

--第四十題 以班號和年齡從大到小的順序查詢Student表中的全部記錄。
select * from student order by Class desc,Sbirthday asc

--第四十一題 查詢“男”教師及其所上的課程。
select Tname,Cname from Teacher,Course where Tsex=‘男‘ and Teacher.Tno=Course.Tno


--第四十二題 查詢最高分同學的Sno、Cno和Degree列。
select Sno,Cno,Degree from Score where degree=(select MAX(Degree)from Score)

select top 1* from Score order by Degree desc

--第四十三題 查詢和“李軍”同性別的所有同學的Sname.
select Sname from student where Ssex=(select Ssex from student where Sname=‘李軍‘) and Sname not in (‘李軍‘)

--第四十四題 查詢和“李軍”同性別並同班的同學Sname.
select Sname from student where Ssex=(select Ssex from student where Sname=‘李軍‘) and Sname not in (‘李軍‘) and Class=(select Class from student where Sname=‘李軍‘)

--第四十五題 查詢所有選修“計算機導論”課程的“男”同學的成績表。
select Sno,Degree from Score where Sno in (select Sno from student where Ssex=‘男‘) and Cno in (select Cno from Course where Cname=‘計算機導論‘)

MYSQL使用方法