<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
主鍵:可唯一表示該資料(可以設定多個列表為主鍵)
設定外來鍵進行表與表的相連,且外來鍵必須是其他表的主鍵(外來鍵也可以設定自己表格的主鍵)
CREATE DATABASE `sql_tutorial`; --建立資料庫 SHOW databases; --展示資料庫 drop database `sql_tutorial`; --刪除資料庫
–為註釋
;為結束命令的格式
MySQL的資料形態:
CREATE DATABASE `sql_tutorial`; -- 建立資料庫 SHOW databases; -- 展示資料庫 use `sql_tutorial`; -- 選擇使用的資料庫 create table student( `student_id` int primary key, -- 第一列 `name` varchar(20), -- 第二列 `major` varchar(20) -- 第三列,20指的是最大字元長度 ); -- 建立表格並設計屬性 describe `student`; -- 展示表格 drop table `student`; -- 刪除表格 alter table `student` add gpa decimal(3,2); -- 增加資料屬性 alter table `student` drop column gpa ; -- 刪除資料屬性
create table student( `student_id` int primary key, -- 第一列 `name` varchar(20), -- 第二列 `major` varchar(20) -- 第三列,20指的是最大字元長度 ); -- 建立表格並設計屬性 select * from `student`; -- 搜尋表格的全部資料 insert into `student` values(1,'小白','歷史'); -- 寫入表格資料 insert into `student` values(2,'小黑','生物'); -- 寫入表格資料 insert into `student` values(3,'小綠',null); -- 寫入表格資料,null為空 insert into `student`(`name`,`major`,`student_id`) values('小藍','英語','4'); -- 按照設定寫入表格資料 insert into `student`(`major`,`student_id`) values('英語','5'); -- 按照設定寫入表格資料,沒有的資料則為空白null
create table student( `student_id` int primary key, -- 第一列 `name` varchar(20) not null, -- 第二列,not null指這個屬性不可以為空 `major` varchar(20) unique -- 第三列,20指的是最大字元長度,unique指每個值不可以重複 ); -- 建立表格並設計屬性 create table student( `student_id` int primary key auto_increment, -- 第一列,auto_increment自動會加一 `name` varchar(20), -- 第二列,not null指這個屬性不可以為空 `major` varchar(20) default '歷史' -- 第三列,20指的是最大字元長度,default指預設值,如果沒有寫該屬性,則為預設值 ); -- 建立表格並設計屬性 drop table `student`; select * from `student`; -- 搜尋表格的全部資料 insert into `student`(`name`,`major`) values('小藍','英語'); -- 按照設定寫入表格資料 insert into `student`(`name`) values('小黑'); -- 按照設定寫入表格資料
條件:>,<,>=,<=,=,<>
set sql_safe_updates = 0; -- 把預設更新模式關閉,這樣更新操作才可以成功 create table student( `student_id` int primary key auto_increment, -- 第一列 `name` varchar(20), -- 第二列 `major` varchar(20), -- 第三列,20指的是最大字元長度 `score` int ); -- 建立表格並設計屬性 drop table `student`; select * from `student`; -- 搜尋表格的全部資料 insert into `student`(`name`,`major`) values('小藍','英語'); -- 按照設定寫入表格資料 insert into `student`(`name`,`major`) values('小白','化學'); -- 按照設定寫入表格資料 insert into `student`(`name`,`major`) values('小黑','生物'); -- 按照設定寫入表格資料 update `student` -- 更新哪個表格 set `major` = '英語文學' -- 將什麼更新成什麼 where `major` = '英語'; -- 將其中誰的什麼進行更新 -- 還可以進行多個更新 update `student` -- 更新哪個表格 set `major` = '生化' -- 將什麼更新成什麼 where `major` = '生物' or `major` = '化學' ; -- 將其中誰的什麼進行更新 update `student` -- 更新哪個表格 set `name` = '小輝',`major` = '生化' -- 將什麼更新成什麼 where `student_id`=1 ; -- 將其中誰的什麼進行更新 -- 不加條件則都改 update `student` -- 更新哪個表格 set `major` = '物理'; -- 將其中誰的什麼進行更新,都改成了生化 delete from `student` where `student_id` = 3; -- 刪除表格中的資料 -- 條件也可以設定多個 delete from `student` where `name` = '小白' and `major`='物理'; -- 刪除表格中的資料 delete from `student`; -- 刪除所有的資料
-- 取得資料 select * from `student`; -- 取得表格的全部資料 select `name` from `student`; -- 只取得表格的對應資料 select `name`, `major` from `student`; -- 取得表格的對應多個資料 select * from `student` ORDER BY `score`; -- 取得表格的全部資料,並排序(預設正序) select * from `student` ORDER BY `score` DESC; -- 取得表格的全部資料,並排序(由高到低,asc是由低到高) select * from `student` ORDER BY `score` ,`student_id`; -- 取得表格的全部資料,並排序(先有score做排序,score中相同的再由student_id做排序) select * from `student` LIMIT 3 ; -- 限制資料範圍 select * from `student` ORDER BY `score` LIMIT 3 ; -- 排序並限制資料範圍 select * from `student` where `major`= '英語'; -- 查詢對應資料 select * from `student` where `major`= '英語' and `student_id` = 1; -- 查詢對應資料(多條件) select * from `student` where `major` in('歷史','英語','生物'); -- 查詢對應資料(多條件)1
CREATE DATABASE `sql_tutorial`; -- 建立資料庫 SHOW databases; -- 展示資料庫 use `sql_tutorial`; -- 選擇使用的資料庫 create table `employee`( `emp_id` int primary key, -- 第一列 `name` varchar(20), -- 第二列,20指的是最大字元長度 `bath_date` date, -- 第三列 `sex` varchar(1), `salary` int, `branch_id` int, `sup_id` int ); -- 建立表格並設計屬性 create table `branch`( `branch_id` int primary key , -- 第一列 `branch_name` varchar(20), -- 第二列 `manager_id` int, -- 第三列,20指的是最大字元長度 foreign key (`manager_id`) references `employee`(`emp_id`) on delete set null -- 設定好外來鍵(選擇什麼是並對應什麼表格的什麼屬性) ); -- 建立表格並設計屬性 -- 補充外來鍵(外表格對應) alter table `employee` -- 在什麼表格上進行更新 add foreign key(`branch_id`) -- 在他的什麼屬性上 references `branch`(`branch_id`) -- 從哪的什麼屬性對應 on delete set null; -- 補充外來鍵(內表格對應) alter table `employee` -- 在什麼表格上進行更新 add foreign key(`sup_id`) -- 在他的什麼屬性上 references `employee`(`emp_id`) -- 從哪的什麼屬性對應 on delete set null; create table `client`( `client_id` int primary key , -- 第一列 `client_name` varchar(20), -- 第二列 `phone` varchar(20) -- 第三列,20指的是最大字元長度 ); -- 建立表格並設計屬性 create table `works_with`( `emp_id` int, -- 第一列 `client_id` int, -- 第二列 `total_sales` int, -- 第三列,20指的是最大字元長度 primary key(`emp_id`,`client_id`), foreign key (`emp_id`) references `employee`(`emp_id`) on delete cascade, -- 設定好外來鍵(選擇什麼是並對應什麼表格的什麼屬性) foreign key (`client_id`) references `client`(`client_id`) on delete cascade -- 設定好外來鍵(選擇什麼是並對應什麼表格的什麼屬性) ); -- 建立表格並設計屬性 -- 當增加資料衝突的時候可以先將其設定為null然後再更新 insert into `branch` values(1,'研發',null); insert into `employee` values(206,'xiaohuang','1998-10-08','F',50000,1,null); update `branch` set `manager_id` = 206 where `branch_id` = 1;
-- 取得對應表格所有資料 select * from `employee`; -- 取得對應表格所有資料並排序(預設低到高) select * from `employee` order by `salary`; -- 低為加desc -- 增加限制取出條件 select * from `employee` order by `salary` desc limit 3 ; -- 取出前三高 -- 取出對應屬性 select `name` from `employee` ; -- 取出對應屬性的內容(且不重複) select distinct `name` from `employee` ;
-- 取得人數 select count(*) from `employee`; -- 統計幾筆資料 select count(`sup_id`) from `employee`; -- 統計對應屬性資料個數(null不計入) -- 增加條件取數 select count(*) from `employee` where `bath_date` > '1970-01-01' and `sex` = 'F'; -- 統計幾筆資料 -- 計算對應的屬性的平均 select avg(`salary`) from `employee`; -- 計算對應的屬性的總和 select sum(`salary`) from `employee`; -- 取得最高的 select max(`salary`) from `employee`; -- 取得最低的 select min(`salary`) from `employee`;
-- %表示多個子元,_表示一個子元 -- 取得尾數335的資料 select * from `client` where `phone` like '%335'; -- 取得姓艾的 select * from `client` where `client_name` like '艾%'; -- 取得生日是10月的 select * from `employee` where `bath_date` like '_____10%';
-- 員工與客戶合併為一列(型別必須相同) select `name` from `employee` union select `client_name` from `client`; -- 多個資料合併為多列(型別必須相同) select `emp_id`, `name` from `employee` union select `client_id`, `client_name` from `client`; -- 多個資料合併為多列(型別必須相同)順便改個名 select `emp_id` as `total_id`, `name` as `total_name` from `employee` union select `client_id`, `client_name` from `client`;
-- 連線 -- 取得所有部門經理名字,這就需要先確定部門再確定經理(二表相連) select * from `employee` join `branch` on `emp_id` = `manager_id`; -- 還可以寫成 select * from `employee` join `branch` on `employee`.`emp_id` = `branch`.`manager_id`; -- 附加條件 select * from `employee` left join `branch` on `employee`.`emp_id` = `branch`.`manager_id`; -- 左邊的表格(join的左邊)返回全部資料,右邊的必須滿足才可
-- 查詢套查詢 select `name` from `employee` where `emp_id` = ( select `manager_id` from `branch` where `branch_name` = '研發' ); -- 查詢研發部門的經理名字 select `emp_id` from `employee` where `emp_id` in ( select `emp_id` from `works_with` where `total_sales` > 50000 ); -- 銷售資金超50000的人有哪些
注:當為主鍵時則不能設定為on delete set nullcreate table `branch`(
`branch_id` int primary key , -- 第一列 `branch_name` varchar(20), -- 第二列 `manager_id` int, -- 第三列,20指的是最大字元長度 foreign key (`manager_id`) references `employee`(`emp_id`) on delete set null -- 設定好外來鍵(選擇什麼是並對應什麼表格的什麼屬性) ); -- 建立表格並設計屬性 create table `works_with`( `emp_id` int, -- 第一列 `client_id` int, -- 第二列 `total_sales` int, -- 第三列,20指的是最大字元長度 primary key(`emp_id`,`client_id`), foreign key (`emp_id`) references `employee`(`emp_id`) on delete cascade, -- 設定好外來鍵(選擇什麼是並對應什麼表格的什麼屬性) foreign key (`client_id`) references `client`(`client_id`) on delete cascade -- 設定好外來鍵(選擇什麼是並對應什麼表格的什麼屬性) ); -- 建立表格並設計屬性
# 匯入功能包(mysql-connector-python) import mysql.connector # 創入連線 connection = mysql.connector.connect(host='localhost', # mysql的位置 port='3306', # 連線通道 user='root', # 使用者名稱 password='123456') # 使用者密碼 '''connection = mysql.connector.connect(host='localhost', # mysql的位置 port='3306', # 連線通道 user='root', # 使用者名稱 password='123456', # 使用者密碼 database='sql_tutorial') # 直接開啟目標資料庫''' # 告知開始使用操作 cursor = connection.cursor() # 在對mysql操作時即用該格式:cursor.execute("你要執行的mysql語句命令") # 建立資料庫 # cursor.execute("CREATE DATABASE `qq`;") # 取得所有資料庫名稱 cursor.execute("show databases;") records = cursor.fetchall() # 取出回傳資料庫 for r in records: print(r) # 因為回傳列表,為便於觀察,進行迴圈列印 # 選擇資料庫 cursor.execute("use `sql_tutorial`;") # 建立表格 # 告知關閉操作 cursor.close() # 若要懂資料進行修改需要結尾加一個指令,這樣才能提交指令生效 connection.commit() # 關閉連線 connection.close()
到此這篇關於MySQL操作並使用Python進行連線的文章就介紹到這了,更多相關MySQL操作 Python連線內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45