Python基礎之MySQL資料庫
為了更加直觀的展示、演示SQL語句查詢關鍵字,需匯入下列表格與記錄(資料)
模擬公司,匯入建立公司員工表,表內包含:ID、姓名、年齡、工作時間、崗位
建立人員表格:
create table emp(
id int primary key auto_increment,
name varchar(20) not null,
gender enum('male','female') not null default 'male', #大部分是男的
age int(3) unsigned not null default 28,
hire_date date not null,
post varchar(50),
post_comment varchar(100),
salary double(15,2),
office int, #一個部門一個屋子
depart_id int
);
生成人員資訊:
#插入記錄
#三個部門:教學,銷售,運營
insert into emp(name,gender,age,hire_date,post,salary,office,depart_id) values
('jason','male',18,'20170301','浦東第一帥形象代言',7300.33,401,1), #以下是教學部
('tom','male',78,'20150302','teacher',1000000.31,401,1),
('kevin','male',81,'20130305','teacher',8300,401,1),
('tony','male',73,'20140701','teacher',3500,401,1),
('owen','male',28,'20121101','teacher',2100,401,1),
('jack','female',18,'20110211','teacher',9000,401,1),
('jenny','male',18,'19000301','teacher',30000,401,1),
('sank','male',48,'20101111','teacher',10000,401,1),
('哈哈','female',48,'20150311','sale',3000.13,402,2),#以下是銷售部門
('呵呵','female',38,'20101101','sale',2000.35,402,2),
('西西','female',18,'20110312','sale',1000.37,402,2),
('樂樂','female',18,'20160513','sale',3000.29,402,2),
('拉拉','female',28,'20170127','sale',4000.33,402,2),
('僧龍','male',28,'20160311','operation',10000.13,403,3), #以下是運營部門
('程咬金','male',18,'19970312','operation',20000,403,3),
('程咬銀','female',18,'20130311','operation',19000,403,3),
('程咬銅','male',18,'20150411','operation',18000,403,3),
('程咬鐵','female',18,'20140512','operation',17000,403,3);:``
關鍵字:select
功能:基本、最常用的查詢方法,可以通過關鍵字查詢表內所有或指定的資料
select : 指定需要查詢的欄位資訊
select * 查詢所有欄位
select 欄位名 查詢指定欄位記錄
select 方法(指定的欄位) 查詢處理後的欄位記錄
from
指定需要查詢的表資訊
from 庫名.表名
from 表名
'''
注意事項:
1、SQL語句中關鍵字的執行順序和編寫順序並不是一致的
eg:
select * from t1;
我們先寫的是select,執行的順序卻是from t1 ——> select *
2、對於執行的順序我們不用過多在意,只需要注意功能,熟練之後會編寫的很自然
'''
對於查詢用法,針對‘select’後面的欄位我們可以先使用‘*’佔位,然後往後面寫,寫到需要查詢的欄位時回來補全
在實際應用中‘select’後面很少直接寫‘*’ , 因為星號表示所有,在當前表中資料量非常龐大時會非常浪費資料庫資源
SQL語句的編寫類似於程式碼的編寫,不是一蹴而就的,也需要縫縫補補
在查詢的欄位後使用‘as’的方式可以用來修改展示的欄位名,不會影響表的結構,只用來當前列印下的展示
字元 | 方法 | 功能 |
---|---|---|
% | 模糊查詢 | 搭配字元前後,匹配任意字元 |
_ | 模糊查詢 | 搭配字元前後,匹配單個字元 |
1、方式一:
select * from emp where id>3 and id<=6;
2、方式二: 搭配關鍵詞:between
select * from emp where id between 3 and 6;
1、方式一:
select * from emp where salary=20000 or salary=18000 or salary=17000;
2、方式二:
select * from emp where salary in (20000,18000,17000);
1、方式一:
select * from emp where id<3 or id>6;
2、方式二:
select * from emp where id not between 3 and 6;
條件不夠時通常使用模糊查詢,搭配查詢字元
select * from emp where name like %o%;
1、方式一:
selsect * from emp where name like '____';
2、方式二:
select * from emp where char_length(name)=4;
select * from emp where post_comment is null;
在使用,group by 的時候,可能會出現以下這種用法
這種方法在MySQL5.5之前,並不會報錯,但是列印的資料並不利於觀看,因為它直接將部門的某一行列印出來,我們應該將需要列印的字元名放在selsct後:
select post from group by post;
在MySQL5.5之後,使用這種方法將會報錯,可以通過在設定內新增嚴格模式來改正這種方法
# 將下列程式碼拷貝至my.ini檔案的MySQLd下,重啟系統環境中的MySQL伺服器端
sql_mode='strict_trans_tables,only_full_group_by'
推導流程:
# 1、先獲取部門資訊
select post from emp group by post;
# 2、獲取部門下人員工資
select post,max(salary) from emp group by post;
推導流程:
# 1、先獲取部門資訊
select post from emp group by post;
# 2、獲取部門下人員工資的綜合資訊
select post as '部門' ,
max(salary) as '最高薪資',
min(salary) as '最低薪資',
avg(salary) as '平均薪資',
sum(salary) as '薪資總和'
from emp group by post;
推導流程:
# 1、先獲取部門資訊
select post from emp group by post;
# 2、獲取部門下人員工資的綜合資訊
select post as '部門' ,
count(id) as '部門人數總合'
from emp group by post;
1、列印部門名稱及部門下人員姓名
select post,group_concat(name) from emp group by post;
2、列印部門名稱,部門下人員姓名、年齡
select post,group_concat(name,age) from emp group by post;
3、自定義輸出內容
select post,group_concat('姓名:',name,'年齡:',age) from emp group by post;
推導流程:
# 1、篩選大於30的員工
select * from emp where age > 30;
# 2、對獲取的資訊進行部門分類
select post from where age > 30 group by;
# 3、對獲取的資訊取工資的平均值
select post.vag(salary) from emp where age > 30 group bay;
# 4、對平均工資進行過濾,保留大於10000的資料
select post,vag(salary) from emp where age > 30 group by having vag(salary)>10000;
關鍵詞:distinct
功能:可以去除表中重複的資料,但是資料必須要一樣才可以,也可以多列使用
1、單列使用
select distinct age from emp;
2、多列使用
select distinct name,age from emp;
推導流程:
# 1、先篩選出年齡大於10的人員平均工資
select avg(salary) from emp where age>10;
# 2、將各部門人員資訊分開
select post,avg(salary) from emp where age>10 group by post;
# 3、進行二次篩選,保留平均工資大於1000的部門
select post,avg(salary) from emp where age>10 group by post having avg(salary)>1000;
# 4、對工資進行排序
select post,avg(salary) from emp where age>10 group by post having avg(salary)>1000 order by avg(salary);
1、限制表開啟的條數
select * from emp limit 5;
2、控制表開啟的範圍
select * from emp limit 5,5;
推導流程:
# 1、將表內所有人員的工資進行排序 設定為降序
select * from empor order by salary desc limit 1;
select * from emp where name regexp '^j.*(y|n)$';
建立部門表:
create table dep(
id int primary key auto_increment,
name varchar(20)
);
建立員工資訊表:
create table emp(
id int primary key auto_increment,
name varchar(20),
sex enum('male','female') not null default 'male',
age int,
dep_id int
);
插入資料:
insert into dep values
(200,'技術'),
(201,'人力資源'),
(202,'銷售'),
(203,'運營'),
(205,'財務');
insert into emp(name,sex,age,dep_id) values
('jason','male',18,200),
('dragon','female',48,201),
('kevin','male',18,201),
('nick','male',28,202),
('owen','male',18,203),
('jerry','female',18,204);
以上兩個表,類似於公司的員工資訊,和公司部門表,兩張表為關係型表,通過之前的學習,我們瞭解到想要查詢資料可以通過‘select * from 表名’的方式進行查詢,其實這個方法也可以一次性查詢多張表,方法如下
select * from emp,dep;
由上圖可以看出,select 方法一次性讀出了兩張表,但是表的資料發生了錯亂,欄位發生了衝突由此我們可以通過指定表名的方式進行查詢,避免發生錯亂
select * from emp,dep where emp.dep_id=dep.id;