python 之 資料庫(修改表、複製表、刪除表、單表查詢)

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

10.8 修改表、複製表、刪除表 10.81 修改表 alter table 10.82 複製表 10.83 刪除表 10.9 單表查詢 10.91 where過濾 10.92 group by分組 group_concat (不能做中間結果)、concat 、concat_ws 、as 10.93 ...


10.8 修改表、複製表、刪除表

10.81 修改表 alter table

1. 修改表名
alter table 表名 rename 新表名;
2. 增加欄位
alter table 表名 add 欄位名  數據類型 [完整性約束條件…];
alter table t1 add stu char(10) not null after name;     #添加到name欄位之後
alter table t1 add sex enum('male','female') default 'male' first;#添加到最前面                   
3. 刪除欄位
alter table t1 drop sex;
4. 修改欄位(增加主鍵)
alter table t1 modify age int(3);
alter table t1 modify id int(11) primary key auto_increment;      #修改為主鍵
​
alter table t1 change 舊欄位名 新欄位名 新數據類型 [完整性約束條件…];
5. 對已經存在的表增加複合主鍵
alter table t1 add primary key(ip,port); 
6. 刪除主鍵
a. 刪除自增約束 alter table t1 modify id int(11) not null;
b. 刪除主鍵 alter table t1 drop primary key;
7. 修改存儲引擎 alter table it engine=innodb;
8. 增加主鍵(設置索引) alter table t1 add primary key(id);

10.82 複製表

create table new_t1 select * from t1;                       # 複製表結構+記錄,但是key和自增不會複製
alter table new_t1 modify id int(11) primary key auto_increment; #添加主鍵和自增
                         #條件為假,查不到任何記錄                                      
create table new1_t1 select * from t1 where 1=2;                #只複製表結構,但是key和自增不會複製
alter table new_t1 modify id int(11) primary key auto_increment; #添加主鍵和自增                                                                           
create table t2 like t1;    #只完全複製表結構,不複製記錄

10.83 刪除表

drop table t1;

10.9 單表查詢

語法
select distinct 查詢欄位1,查詢欄位2......... from 表名
    where 分組之前的過濾條件
    group by 分組條件
    having 分組之後的過濾條件
    order by 排序欄位1 asc,排序欄位2 desc
    limit 5,5;

10.91 where過濾

select id,name from db39.emp where id >= 3 and id <= 6
select *  from db39.emp where id between 3 and 6;
​
select * from emp where salary = 20000 or salary = 18000 or salary = 17000;
select * from emp where salary in (20000,18000,17000);
select * from emp where salary not in (20000,18000,17000);
select * from emp where id not between 3 and 6;
​
要求:查詢員工姓名中包含i字母的員工姓名與其薪資
select name,salary from db39.emp where name like '%i%'
​
要求:查詢員工姓名是由四個字元組成的的員工姓名與其薪資
select name,salary from db39.emp where name like '____';
select name,salary from db39.emp where char_length(name) = 4;
​
要求:查詢崗位描述為空的員工名與崗位名
select name,post from db39.emp where post_comment is NULL;
select name,post from db39.emp where post_comment is not NULL;

10.92 group by分組

#設置sql_mode為only_full_group_by,意味著以後但凡分組,只能取到分組的依據
mysql> set global sql_mode="strict_trans_tables,only_full_group_by";
​
#聚合函數:每個部門的最高、最低、平均、總工資,計數
select post,max(salary) from emp group by post;
select post,min(salary) from emp group by post;
select post,avg(salary) from emp group by post;
select post,sum(salary) from emp group by post;
select post,count(id) from emp group by post;

group_concat (不能做中間結果)、concat 、concat_ws 、as

#group_concat(分組之後使用):取出分組後,組內定製的詳細信息
select post,group_concat(name) from emp group by post;
select post,group_concat(name,"_SB") from emp group by post;
select post,group_concat(name,": ",salary) from emp group by post;
select post,group_concat(name,":",age,":",sex) from emp group by post;
+-----------------------------------------+--------------------------------------------------------
| post                                    | group_concat(name,"_SB")                              |
+-----------------------------------------+--------------------------------------------------------
| operation                               | 程咬鐵_SB,程咬銅_SB,程咬銀_SB,程咬金_SB,張野_SB         |
| sale                                    | 格格_SB,星星_SB,丁丁_SB,丫丫_SB,歪歪_SB                |
|外交大使                                | egon_SB                                               |
+-----------------------------------------+--------------------------------------------------------
# concat(不分組時用):自定製取出的結果
select name as 姓名,salary as 薪資 from emp;
select concat("NAME: ",name) as 姓名,concat("SAL: ",salary) as 薪資 from emp;
+------------------+-----------------+
| 姓名             | 薪資            |
+------------------+-----------------+
| NAME: egon       | SAL: 7300.33    |
| NAME: alex       | SAL: 1000000.31 |
| NAME: wupeiqi    | SAL: 8300.00    |
+------------------+-----------------+
# concat_ws (不分組時用):每個分組結果都用相同的分隔符時使用
select concat_ws(":",name,age,sex,post) as info from emp;
+------------------------------------------------------+
| info                                                 |
+------------------------------------------------------+
| egon:18:male:外交大使                               |                                    
| 程咬金:18:male:operation                             |
| 程咬銀:18:female:operation                           |
| 程咬銅:18:male:operation                             |
| 程咬鐵:18:female:operation                           |
+------------------------------------------------------+
# 補充as語法
mysql> select emp.id,emp.name from emp as t1; # 報錯
mysql> select t1.id,t1.name from emp as t1;
# 查詢四則運算
select name,salary*12 as annual_salary from emp;

10.93 having過濾

having的語法格式與where一模一樣,只不過having是在分組之後進行的進一步過濾,即where不能用聚合函數,而having是可以用聚合函數的

#統計各部門年齡在30歲以上的員工平均工資,並且保留平均工資大於10000的部門
select post,avg(salary) from emp
        where age >= 30
        group by post
        having avg(salary) > 10000;
+---------+---------------+
| post    | avg(salary)   |
+---------+---------------+
| teacher | 255450.077500 |
+---------+---------------+
#強調:having必須在group by後面使用
select * from emp having avg(salary) > 10000;#報錯

10.94 distinct去重

select distinct post from emp;
+-----------------------------------------+
| post                                    |
+-----------------------------------------+
| 外交大使                               |
| teacher                                 |
| sale                                    |
| operation                               |
+-----------------------------------------+        

10.95 order by 排序

select * from emp order by salary (asc); #預設升序排
select * from emp order by salary desc; #降序排
select * from emp order by age desc,salary asc; #先按照age降序排,如果相同再按照薪資升序排
​
# 統計各部門年齡在10歲以上的員工平均工資,並且保留平均工資大於1000的部門,然後對平均工資進行排序
select post,avg(salary) from emp
    where age > 10
    group by post
    having avg(salary) > 1000
    order by avg(salary);
+-----------------------------------------+---------------+
| post                                    | avg(salary)   |
+-----------------------------------------+---------------+
| sale                                    |   2600.294000 |
|外交大使                                |   7300.330000 |
| operation                               |  16800.026000 |
| teacher                                 | 151842.901429 |
+-----------------------------------------+---------------+

10.96 limit 限制顯示條數

select * from emp limit 3;                      #從頭開始只顯示3條信息
select * from emp order by salary desc limit 1;   #找到工資最大的一條信息
+----+------+------+-----+------------+---------+--------------+------------+--------+-----------+
| id | name | sex  | age | hire_date  | post    | post_comment | salary     | office | depart_id |
+----+------+------+-----+------------+---------+--------------+------------+--------+-----------+
|  2 | alex | male |  78 | 2015-03-02 | teacher | NULL         | 1000000.31 |    401 |         1 |
+----+------+------+-----+------------+---------+--------------+------------+--------+-----------+
# 分頁顯示
select * from emp limit 0,5;#從0開始顯示5條信息(1-5)
select * from emp limit 5,5;#從5開始顯示5條信息(6-10)

10.97 正則表達式

select * from emp where name regexp '^jin.*(n|g)$';
+----+------------+--------+-----+------------+---------+--------------+----------+--------+
| id | name  | sex  | age | hire_date  | post  |post_comment| salary  | office | depart_id |
+----+------------+--------+-----+------------+---------+--------------+----------+--------+
| 6 | jingliyang|female|18| 2011-02-11 | teacher | NULL    |  9000.00 |  401   |         1 |
| 7 | jinxin    |male  |18| 1900-03-01 | teacher | NULL    | 30000.00 |  401   |         1 |
+----+------------+--------+-----+------------+---------+--------------+----------+--------+

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

-Advertisement-
Play Games
更多相關文章
  • 1.安裝JDK ElasticSearch是用JAVA語言開發的,其運行需要安裝JDK。 JDK (Java Development Kit) ,是整個Java的核心,包括了Java運行環境(Java Runtime Envirnment),一堆Java工具和Java基礎的類庫(rt.jar)。 2 ...
  • 序列 序列是Python中最基本的數據結構,包括字元串、列表、元組。 序列,顧名思義,是有序的,序列都有索引,都能進行索引、切片(截取)、加(連接)、乘(倍增)、檢查成員的操作。 因為序列有序,可通過位置來區分元素,所以序列中可含有相同的元素。 序列的通用操作 1、索引 seq[index] ind ...
  • 一、Jupyter安裝 前提需要已經安裝好python環境~ 接著,Python3x版本安裝路徑下執行pip命令安裝 pip3 install Jupyter 看網速,安裝完後會顯示安裝成功一段話即可。 二、啟動jupyter notebook兩種方法 1:命令行視窗輸入jupyter notebo ...
  • 接入支付寶準備工作:(關於賬號可以是個體商戶也可以是企業賬號但必須有營業執照) 1.登錄螞蟻金服開放平臺 2.創建應用,應用分類網頁應用和移動應用。應用提交審核審核通過後得到Appid才能調用相應的介面許可權 3.添加功能:一般有掃碼付,電腦網站支付,手機網站支付,APP支付。看你的需求什麼。移動應用 ...
  • ckeditor作為老牌的優秀線上編輯器,一直受到開發者的青睞。 這裡我們講解下 ckeditor最新版本4.7的圖片上傳配置。 https://ckeditor.com/ 官方 進入下載 https://ckeditor.com/download 我們下載完整版 預設本地上傳沒有開啟; 找到cke ...
  • B篇,主要介紹Python的自定義函數,匿名函數,面向對象,模塊化。 由於不涉及基礎的知識,我會將重難點加以解釋。 ...
  • Ural 1250 Sea Burial 題解 [TOC] 題意 給定一個$n\times m$的地圖,$.$為水,$\ $為陸,地圖的外部是水(地圖被水包圍)。水為八連通,陸為四聯通。聯通的水稱為海,聯通的陸稱為島。海內可能有島,島內可能有海。給定$x,y$求在包含$(x,y)$(保證$(x,y) ...
  • 一、前言 承接 "《Spring源碼解析——創建bean》" 、 "《Spring源碼解析——創建bean的實例》" ,我們今天接著聊聊,迴圈依賴的解決方案,即創建bean的ObjectFactory。 二、ObjectFactory 這段代碼不是很複雜,但是很多人不是太理解這段代碼的作用,而且,這 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...