SQL入門(mysql)
阿新 • • 發佈:2019-01-25
1、資料庫簡介
- SQL Server、Oracle(收費) MySQL、DB2 SyBase
2、使用命令列連線MySQL資料庫
- mysql -u使用者名稱 -p密碼 mysql -u使用者名稱 -p(之後再輸入密碼)
3、裝好mysql,只是裝好了一個數據庫管理程式,要想通過這個程式儲存資料,需要在這個程式下建立多個庫來儲存(一般開發人員會針對每一個應用建立一個數據庫),而庫又是使用表儲存資料的,所以建立好後,我們又會在資料庫下建立多個表,以儲存程式中不同實體的資料。
4、建立資料庫
建立一個名稱為mydb1的資料庫
create database mydb1;
show databases;
建立一個使用utf-8字符集的mydb2資料庫。
create database mydb2 character set utf8;(注意是utf8)
建立一個使用utf-8字符集,並帶校對規則的mydb3資料庫。
create database mydb3 character set utf8 collate utf8_general_ci;
5、檢視刪除資料庫
檢視前面建立的mydb2資料庫的定義資訊
show create database mydb2;
刪除前面建立的mydb1資料庫
drop database mydb1;
6、修改恢復備份資料庫
檢視伺服器中的資料庫,並把其中某一個庫的字符集修改為gb2312;
alter database mydb2 character set gb2312;
show create database mydb2;
演示恢復和備份
create database tt;
use tt;
create table a
(
name varchar(20 )
);
insert into a(name) values('aaaa');
select * from a;
-----看到a表有資料
演示備份:
對tt作備份操作,啟動一個window命令列視窗,執行如下命令
mysqldump -uroot -p tt>c:\tt.sql(注意是window命令)
演示恢復:
1.先刪除庫
drop database tt;
2.恢復tt庫(1)
2.1 為恢復庫,要先建立庫 create database tt;
2.2 再恢復tt庫
use tt;
source c:\tt.sql(source:可以執行一個 sql指令碼)
3.恢復tt庫(2)
3.1 為恢復庫,要先建立庫 create database tt;
3.2 恢復庫 mysql -uroot -proot tt<c:\1.sql; (window命令)
7、建立表
建立一個員工表
use mydb2;
create table employee
(
id int,
name varchar(40),
sex varchar(4),
birthday date,
entry_date date,
job varchar(40),
salary decimal(8,2),
resume text
);
show tables; 檢視庫的所有表
show create table employee; 查看錶的建立細節
desc employee; 看錶結構
8、修改表
在上面員工表的基本上增加一個image列。
alter table employee add image blob;
修改job列,使其長度為60。
alter table employee modify job varchar(60);
刪除sex列
alter table employee drop sex;
表名改為user。
rename table employee to user;
修改表的字符集為utf-8
alter table user character set utf8;
列名name修改為username
alter table user change column name username varchar(40);
刪除表
drop table user;
使用insert語句向表中插入三個員工的資訊。
rename table user to employee;
insert into employee(id,username,birthday,entry_date,job,salary,resume) values(1,'aaa','1980-09-09','1980-09-09','bbb',90,'aaaaa');
select * from employee;
插入資料的細節1
insert into employee values(1,'aaa','1980-09-09','1980-09-09','bbb',90,'aaaaa');
插入資料的細節2
insert into employee values('1','aaa','1980-09-09','1980-09-09','bbb','90','aaaaa');
插入資料的細節3(插入中文)
要告訴mysql客戶採用gb2312編碼
show variables like 'chara%';
set character_set_client=gb2312;
insert into employee(id,username) values('3','張三');
要想檢視時不亂碼
show variables like 'chara%';
set character_set_results=gb2312;
select * from employee;
將所有員工薪水修改為5000元。
update employee set salary=5000;
將姓名為’bbb’的員工薪水修改為3000元。
update employee set salary=3000 where username='bbb';
將姓名為’bbb的員工薪水修改為4000元,job改為ccc。
update employee set salary=4000,job='ccc' where username='bbb';
將bbb的薪水在原有基礎上增加1000元。
update employee set salary=salary+1000 where username='bbb';
更新要注意的問題
update employee set username='ccc',salary=9000,birthday='1980-09-09',.....................
update where id=1;
刪除表中名稱為’zs’的記錄。
delete from employee where username='bbb';
刪除表中所有記錄。
delete from employee;
使用truncate刪除表中記錄。
truncate table employee;
查詢表中所有學生的資訊。
select * from student;
查詢表中所有學生的姓名和對應的英語成績。
select name,english from student;
過濾表中重複的英語資料。
select distinct english from student;
在所有學生總分上加10分特長分。
select name,(chinese+english+math)+10 from student;
統計每個學生的總分。
select name,(chinese+english+math) from student;
使用別名表示學生分數。
select name as 姓名,(chinese+english+math)+10 as 總分 from student;
select name 姓名,(chinese+english+math)+10 總分 from student;
查詢姓名為wu的學生成績
select * from student where name='王五';
查詢英語成績大於90分的同學
select * from student where english>'90';
查詢總分大於200分的所有同學
select name from student where (chinese+english+math)>200;
查詢英語分數在 80-90之間的同學。
select name from student where english>80 and english<90;
select name from student where english between 80 and 90; == select name from student where english>=80 and english<=90;
查詢數學分數為89,90,91的同學。
select * from student where math in(89,90,91);
查詢所有姓李的學生成績。
select * from student where name like '李%';
select * from student where name like '李_';
查詢數學分>80,語文分>80的同學。
select * from student where math>80 and chinese>80;
對數學成績排序後輸出。
select name,math from student order by math;
對總分排序後輸出,然後再按從高到低的順序輸出
select name 姓名,(chinese+english+math) 總分 from student order by (chinese+english+math) desc;
select name 姓名,(chinese+english+math) 總分 from student order by 總分 desc;
對姓李的學生成績排序輸出
select * from student where name like '李%' order by (chinese+english+math) desc;
統計一個班級共有多少學生?
select count(name) from student;
select count(*) from student;
統計數學成績大於90的學生有多少個?
select count(*) from student where math>80;
統計總分大於250的人數有多少?
select count(*) from student where (chinese+english+math)>250;
關於 count的函式的細節 (count只統有值的行)
統計一個班級數學總成績?
select sum(math) from student;
統計一個班級語文、英語、數學各科的總成績
select sum(chinese),sum(english),sum(math) from student;
統計一個班級語文、英語、數學的成績總和
select sum(chinese+english+math) from student;
統計一個班級語文成績平均分
select sum(chinese)/count(*) from student;
統計一個班級語文成績平均分
select avg(chinese) from student;
求一個班級總分平均分
select avg(chinese+math+english) from student;
求班級最高分和最低分
select max(chinese+math+english),min(chinese+math+english) from student;
對訂單表中商品歸類後,顯示每一類商品的總價
select product,sum(price) from orders group by product;
查詢購買了幾類商品,並且每類總價大於100的商品
select product from orders group by product having sum(price)>100;
定義主鍵約束(每一個表必須有一個主鍵列)
create table student
(
id int primary key,
name varchar(40)
);
定義主鍵自動增長
create table student
(
id int primary key auto_increment,
name varchar(40)
);
定義唯一約束
drop table student;
create table student
(
id int primary key auto_increment,
name varchar(40) unique
);
定義非空約束
drop table student;
create table student
(
id int primary key auto_increment,
name varchar(40) unique not null
);
定義外來鍵約束
create table husband
(
id int primary key,
name varchar(40)
);
create table wife
(
id int primary key,
name varchar(40),
husband_id int,
constraint husband_id_FK foreign key(husband_id) references husband(id)
);
一對多或多對一的物件存到資料庫時,表的設計方案
部門和員工
create table department
(
id int primary key,
name varchar(40)
);
create table employee
(
id int primary key,
name varchar(40),
salary decimal(8,2),
department_id int,
constraint department_id_FK foreign key(department_id) references department(id)
);
多對多物件的表的設計(老師和學生)
create table teacher
(
id int primary key,
name varchar(40),
salary decimal(8,2)
);
create table student
(
id int primary key,
name varchar(40)
);
create table teacher_student
(
teacher_id int,
student_id int,
primary key(teacher_id,student_id),
constraint teacher_id_FK foreign key(teacher_id) references teacher(id),
constraint student_id_FK foreign key(student_id) references student(id)
);
一對一的物件的資料庫設計
create table person
(
id int primary key,
name varchar(40)
);
create table idcard
(
id int primary key,
city varchar(40),
constraint id_FK foreign key(id) references person(id)
);
自連線的表
create table person
(
id int primary key,
name varchar(40),
parent_id int,
constraint parent_id_FK foreign key(parent_id) references person(id)
);