python 之 資料庫(多表查詢之連接查詢、子查詢、pymysql模塊的使用)

来源:https://www.cnblogs.com/mylu/archive/2019/08/05/11305700.html
-Advertisement-
Play Games

10.10 多表連接查詢 10.101 內連接 把兩張表有對應關係的記錄連接成一張虛擬表 #應用: select * from emp,dep where emp.dep_id = dep.id and dep.name = "技術"; select * from emp inner join de ...


10.10 多表連接查詢

10.101 內連接

把兩張表有對應關係的記錄連接成一張虛擬表

select * from emp,dep;                                  #連接兩張表的笛卡爾積
select * from emp,dep where emp.dep_id = dep.id;            # 不推薦用where連接表
select * from emp inner join dep on emp.dep_id = dep.id;    #推薦
+----+-----------+--------+------+--------+------+--------------+
| id | name      | sex    | age  | dep_id | id   | name         |
+----+-----------+--------+------+--------+------+--------------+
|  1 | egon      | male   |   18 |    200 |  200 | 技術         |
|  2 | alex      | female |   48 |    201 |  201 | 人力資源     |
|  3 | wupeiqi   | male   |   38 |    201 |  201 | 人力資源     |
|  4 | yuanhao   | female |   28 |    202 |  202 | 銷售         |
|  5 | liwenzhou | male   |   18 |    200 |  200 | 技術         |
+----+-----------+--------+------+--------+------+--------------+
#應用:
select * from emp,dep where emp.dep_id = dep.id and dep.name = "技術"; 
select * from emp inner join dep on emp.dep_id = dep.id where dep.name = "技術";
+----+-----------+------+------+--------+------+--------+
| id | name      | sex  | age  | dep_id | id   | name   |
+----+-----------+------+------+--------+------+--------+
|  1 | egon      | male |   18 |    200 |  200 | 技術   |
|  5 | liwenzhou | male |   18 |    200 |  200 | 技術   |
+----+-----------+------+------+--------+------+--------+
應用

10.102 左連接

在內連接的基礎上,保留左邊沒有對應關係的記錄

select * from emp left join dep on emp.dep_id = dep.id;
+----+------------+--------+------+--------+------+--------------+
| id | name       | sex    | age  | dep_id | id   | name         |
+----+------------+--------+------+--------+------+--------------+
|  1 | egon       | male   |   18 |    200 |  200 | 技術         |
|  5 | liwenzhou  | male   |   18 |    200 |  200 | 技術         |
|  2 | alex       | female |   48 |    201 |  201 | 人力資源     |
|  3 | wupeiqi    | male   |   38 |    201 |  201 | 人力資源     |
|  4 | yuanhao    | female |   28 |    202 |  202 | 銷售         |
|  6 | jingliyang | female |   18 |    204 | NULL | NULL         |
+----+------------+--------+------+--------+------+--------------+

10.103 右連接

在內連接的基礎上,保留右邊沒有對應關係的記錄

select * from emp right join dep on emp.dep_id = dep.id;
+------+-----------+--------+------+--------+------+--------------+
| id   | name      | sex    | age  | dep_id | id   | name         |
+------+-----------+--------+------+--------+------+--------------+
|    1 | egon      | male   |   18 |    200 |  200 | 技術         |
|    2 | alex      | female |   48 |    201 |  201 | 人力資源     |
|    3 | wupeiqi   | male   |   38 |    201 |  201 | 人力資源     |
|    4 | yuanhao   | female |   28 |    202 |  202 | 銷售         |
|    5 | liwenzhou | male   |   18 |    200 |  200 | 技術         |
| NULL | NULL      | NULL   | NULL |   NULL |  203 | 運營         |
+------+-----------+--------+------+--------+------+--------------+

10.104 全連接

在內連接的基礎上,保留左、右邊沒有對應關係的記錄,並去重

select * from emp left join dep on emp.dep_id = dep.id
union
select * from emp right join dep on emp.dep_id = dep.id;
+------+------------+--------+------+--------+------+--------------+
| id   | name       | sex    | age  | dep_id | id   | name         |
+------+------------+--------+------+--------+------+--------------+
|    1 | egon       | male   |   18 |    200 |  200 | 技術         |
|    5 | liwenzhou  | male   |   18 |    200 |  200 | 技術         |
|    2 | alex       | female |   48 |    201 |  201 | 人力資源     |
|    3 | wupeiqi    | male   |   38 |    201 |  201 | 人力資源     |
|    4 | yuanhao    | female |   28 |    202 |  202 | 銷售         |
|    6 | jingliyang | female |   18 |    204 | NULL | NULL         |
| NULL | NULL       | NULL   | NULL |   NULL |  203 | 運營         |
+------+------------+--------+------+--------+------+--------------+

補充:多表連接可以不斷地與虛擬表連接

#查找各部門最高工資
select t1.* from emp as t1 inner join (select post,max(salary) as ms from emp group by post) as t2
on t1.post = t2.post
where t1.salary = t2.ms;
View Code

10.11 子查詢

把一個查詢語句用括弧括起來,當做另外一條查詢語句的條件去用,稱為子查詢

#查詢技術部員工的名字
select emp.name from emp inner join dep on emp.dep_id = dep.id where dep.name="技術";#連接查詢
select name from emp where dep_id =(select id from dep where name="技術");          #子查詢
+-----------+
| name      |
+-----------+
| egon      |
| liwenzhou |
+-----------+
#查詢平均年齡在25歲以上的部門名                                                       #子查詢
select name from dep where id in (select dep_id from emp group by dep_id having avg(age) > 25);
select dep.name from emp inner join dep on emp.dep_id = dep.id                         #連接查詢
    group by dep.name
    having avg(age) > 25;
+--------------+
| name         |
+--------------+
| 人力資源      |
| 銷售          |
+--------------+
#查詢每個部門最新入職的那位員工
select t1.id,t1.name,t1.post,t1.hire_date,t2.post,t2.max_date from (emp as t1) inner join
(select post,max(hire_date) as max_date from emp group by post) as t2   #拿到最大雇佣時間
on t1.post = t2.post
where t1.hire_date = t2.max_date;
+----+--------+-----------------------------------------+----
| id | name   | post    | hire_date  | post    |  max_date  |
+----+--------+-----------------------------------------+-----
|  1 | egon   | 外交大使 | 2017-03-01 | 外交大使 | 2017-03-01 |
|  2 | alex   | teacher | 2015-03-02 | teacher  | 2015-03-02 |
| 13 | 格格   | sale     | 2017-01-27 | sale     | 2017-01-27 |
| 14 | 張野   | operation| 2016-03-11 | operation| 2016-03-11 |
+----+--------+-----------------------------------------+-----

exists( ):括弧內的值存在時滿足條件

select * from emp where exists (select id from dep where id > 3);       #找到所有

10.12 pymysql模塊的使用

10.121 pymysql查

import pymysql              #pip3 install pymysql
conn=pymysql.connect(        #連接
    host='127.0.0.1',
    port=3306,
    user='root',
    password='',
    database='db2',
    charset='utf8')
cursor=conn.cursor(pymysql.cursors.DictCursor)#以字典形式顯示表的記錄
rows=cursor.execute('show tables;')           #1 顯示受影響的行數(row),此處為有表的條數
print(rows)
rows=cursor.execute('select * from emp;')      #18 此處rows為emp表內有記錄的條數
print(rows)
​
print(cursor.fetchone())     #查看一條記錄 一個字典{key:value}
print(cursor.fetchmany(2))   #查看多條記錄 [{key:value},]
#print(cursor.fetchall())    #查看所有記錄 強調:下一次查找是接著上一次查找的位置繼續
​
cursor.scroll(0,'absolute')  #絕對移動,以0位置為參照顯示
print(cursor.fetchone())
​
cursor.scroll(1,'relative')  #相對移動,相對當前位置移動1條記錄
print(cursor.fetchone())
​
cursor.close()#游標
conn.close()

10.122 防止sql註入問題

在服務端防止sql註入問題:不要自己拼接字元串,讓pymysql模塊去拼接,pymysql拼接時會過濾非法字元

import pymysql 
conn=pymysql.connect(
    host='127.0.0.1',
    port=3306,
    user='root',
    password='',
    database='db2',
    charset='utf8'
)
cursor=conn.cursor(pymysql.cursors.DictCursor)
​
inp_user=input('用戶名>>:').strip() #inp_user=""
inp_pwd=input('密碼>>:').strip() #inp_pwd=""
sql="select * from user where username=%s and password=%s"
print(sql)
            
rows=cursor.execute(sql,(inp_user,inp_pwd))#輸入的用戶名和密碼中的非法字元會被過濾掉
if rows:
    print('登錄成功')
else:
    print('登錄失敗')
cursor.close()
conn.close()
View Code

10.123 pymysql增刪改

import pymysql 
conn=pymysql.connect(
    host='127.0.0.1',
    port=3306,
    user='root',
    password='',
    database='db2',
    charset='utf8')
cursor=conn.cursor(pymysql.cursors.DictCursor)          
sql='insert into user(username,password) values(%s,%s)'         #插入單行記錄
rows=cursor.execute(sql,('EGON','123456'))              
print(rows)
print(cursor.lastrowid)                                      #顯示當前最後一行的id
​
sql='insert into user(username,password) values(%s,%s)'         #一次插入多行記錄
rows=cursor.executemany(sql,[('lwz','123'),('evia','455'),('lsd','333')])
print(rows)
​
rows=cursor.execute('update user set username="alexSB" where id=2')#修改記錄
print(rows)
​
conn.commit() # 只有commit提交才會完成真正的修改
cursor.close()
conn.close()

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

-Advertisement-
Play Games
更多相關文章
  • 4.1.結構體 結構體:講一個或多個變數組合到一起形成新的類型,這個類型就是結構體,結構體是值類型 定義結構體和賦值 4.2.結構體指針 由於結構體是值類型,在方法傳遞時希望傳遞結構體地址,可以使用結構體指針完成 可以結合new()函數創建結構體指針 4.3.方法 方法和函數語法比較像,區別是函數屬 ...
  • 一. 前言 1.1 Java語言的概述 1.1.1 什麼是Java語言 Java語言是美國SUN公司開發(斯坦福大學network),在1995年推出的高級編程語言。 2009年Oracle公司收購了SUN公司,推出了Java 7。 2014年發佈了Java 8。 2017年發佈了Java 9。 2 ...
  • 摘要:有n個犯人,被關在n個不同的房間,有m種宗教,如果,相鄰房間的犯人信仰相同,則判定為越獄。那麼我們可以用組合數學來計算這個數據,用方案的總數,減去不可能的情況,就是答案。 方案的總數:m^n ,在每個房間,每個宗教的可能有m種,有n個房間所以 m^n 不可能的情況: m * (m-1 ) ^( ...
  • 3.1.goland中項目結構 (1)在goland中創建標準Go項目 (2)goland配置 創建項目Learn-Go file-settings-go-GOPATH-添加 在項目目錄下創建src目錄,在src目錄下創建demo目錄,在demo目錄下創建demo.go文件 在項目目錄下創建main ...
  • 最近的類看著很疼,堅持就是勝利~~~ python中的類,什麼是類?類是由屬性和方法組成的。類中可能有很多屬性,以及方法。 我們這樣定義一個類: 前面是class關鍵字 後面school是一個類的名字,在後面就是圓括弧和括弧裡面的object關鍵字,它是跟類,所有的類繼承它。最後記住冒號結尾。 創建 ...
  • 1:包裝類: byte Byte short Short int nteger long Long char Character boolean Boolean double Double float Float 2.基本類型轉成字元串類型 String.valueOf() String ss =I ...
  • 周總結:1.面向對象:把不同的功能封裝在不同的對象中,用到什麼功能就找相應的對象 首先要定義描述對象的類,類是用來創建對象的 new Person() >JVM使用的是Person.class來創建對象的,位元組碼中定義了說什麼,對象中就有什麼 2.成員變數:作用域是整個類,有預設值,在堆中開闢記憶體3 ...
  • 本文為原創??? 作者寫這篇文章的時候剛剛初一畢業…… 如有錯誤請各位大佬指正 從例題入手 洛谷P3915[HNOI2008]玩具裝箱toy Step0:讀題 Q:暴力? 如果您學習過dp 不難推出dp方程 設dp[i]表示放置前i個物品需要的最小價值 dp[i]=min(dp[j]+(sum[i] ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...