MySQL 常用命令

来源:https://www.cnblogs.com/moying-wq/archive/2018/11/14/9960867.html
-Advertisement-
Play Games

--資料庫操作前的準備-- 創建資料庫-- create database python_test_1 charset=utf8; -- 使用資料庫-- use python_test_1; -- students表-- create table students(-- id int unsigne ...


 

 

--資料庫操作前的準備
-- 創建資料庫
-- create database python_test_1 charset=utf8;

-- 使用資料庫
-- use python_test_1;

-- students表
-- create table students(
-- id int unsigned primary key auto_increment not null,
-- name varchar(20) default '',
-- age tinyint unsigned default 0,
-- height decimal(5,2),
-- gender enum('男','女','中性','保密') default '保密',
-- cls_id int unsigned default 0,
-- is_delete bit default 0
-- );

-- classes表
-- create table classes (
-- id int unsigned auto_increment primary key not null,
-- name varchar(30) not null
-- );


-- 查詢練習
-- 查詢所有欄位
-- select * from 表名;
select * from students;


-- 查詢指定欄位
-- select 列1,列2,... from 表名;
select name,age from students;


-- 使用 as 給欄位起別名
-- select 欄位 as 名字.... from 表名;
select name as '姓名',age from students;

 

-- select 表名.欄位 .... from 表名;
select students.name from students;

-- 可以通過 as 給表起別名
-- select 別名.欄位 .... from 表名 as 別名;
select * from students as s;

select s.name from students as s;


-- 消除重覆行(查性別)

-- distinct 欄位 不要記有個印象
select distinct gender from students;


> < >= <= != <>
-- 條件查詢
-- 比較運算符
-- select .... from 表名 where .....
-- >
-- 查詢年紀大於18歲的信息
select * from students where age > 18;


-- <
-- 查詢年紀小於18歲的信息
select * from students where age < 18;

-- >=
-- <=
-- 查詢小於等於18歲的信息
select * from students where age <= 18;

-- =
-- 查詢年齡為18歲的所有學生的名字
select * from students where age = 18;

 

-- != 或者 <>
-- 查詢年齡不為18歲的所有學生的名字
select * from students where age != 18;
-- select * from students where age <> 18;
and or not 
-- 邏輯運算符
-- and
-- 18和28之間的所以學生信息
select * from students where age > 18 and age < 28;


-- 18歲以上的女性
select * from students where age > 18 and gender = '女';


-- or
-- 18以上或者身高高過180(包含)以上
select * from students where age > 18 or height >= 180;

-- not
-- 不在 18歲以上的女性 這個範圍內的信息
-- select * from students where not (age>18 and gender=2);
select * from students where not age > 18 and gender= "女";

select * from students where not (age > 18 and gender = "女");

like % _
-- 模糊查詢(where name like 要查詢的數據)
-- like 
-- % 替換任意個
-- _ 替換1個
-- 查詢姓名中 以 "小" 開始的名字
select * from students where name like '小%';

-- 查詢姓名中 有 "小" 所有的名字
select * from students where name like '%小%';

-- 查詢有2個字的名字
select * from students where name like '__';


-- 查詢有3個字的名字
select * from students where name like '___';

 

-- 查詢至少有2個字的名字
select * from students where name like '__%';

select * from students where name not like "__";


-- 範圍查詢
-- in (1, 3, 8)表示在一個非連續的範圍內
-- 查詢 年齡為18或34的姓名
select * from students where age = 18 or age = 34 ;
select * from students where age in (18,34);

-- not in 不非連續的範圍之內
-- 年齡不是 18或34歲的信息
select * from students where age not in(18,34);


-- between ... and ...表示在一個連續的範圍內
-- 查詢 年齡在18到34之間的的信息
select * from students where age > 18 and age < 34;
-- between xxx and xxx
select * from students where age between 18 and 34; --between...and...這是包含兩端的數據


-- not between ... and ...表示不在一個連續的範圍內
-- 查詢 年齡不在18到34之間的的信息

select * from students where age not between 18 and 34;

-- 空判斷
-- 判空is null
-- 查詢身高為空的信息
select * from students where height is null;

 


-- 判非空is not null
select * from students where height is not null;

order by 欄位 asc,desc

-- 排序
-- order by 欄位
-- asc
-- asc從小到大排列,即升序
-- desc
-- desc從大到小排序,即降序
-- 查詢年齡在18到34歲之間的男性,按照年齡從小到大到排序
select * from students where (age between 18 and 34) and gender='男' order by age asc;

 


-- 查詢年齡在18到34歲之間的女性,身高從高到矮排序
select * from students where (age between 18 and 34) and gender ='女' order by height desc;

-- order by 多個欄位
-- 查詢年齡在18到34歲之間的女性,身高從高到矮排序, 如果身高相同的情況下按照年齡從小到大排序
select * from students where (age between 18 and 34) and gender = '女' order by height desc,age asc;


-- 如果年齡也相同那麼按照id從大到小排序
select * from students where (age between 18 and 34) and gender ='女' order by height desc,age asc,id desc;
-- 排序有優先順序,第一個主排序,後面是次排序,在保證主排序不變的情況下,能排就排,不排就算了


-- 聚合函數
-- 總數
-- count
-- 查詢男性有多少人 count(欄位) 要註意如果值有null那麼不會進行計算
select count(*) from students where gender='男';

-- 最大值
-- max
-- 查詢最大的年齡
select max(age) from students;

-- 查詢女性的最高 身高
select max(height) from students where gender ='女';


-- 最小值
-- min
select min(age) from students ;


-- 求和
-- sum
-- 計算所有人的年齡總和
select sum(age) from students;


-- 平均值
-- avg
-- 計算平均年齡
select avg(age) from students;


-- 計算平均年齡 sum(age)/count(*)
select sum(age)/count(*) from students;


-- 四捨五入 round(123.23 , 1) 保留1位小數
-- 計算所有人的平均年齡,保留2位小數
select round (avg(age),2) from students;


-- 計算男性的平均身高 保留2位小數
select round(avg(height),2) from students where gender='男';
select avg(height) from students where gender = '男';


-- 分組

-- group by
-- 按照性別分組,查詢所有的性別
-- select 分組欄位 from 表名 group by 分組欄位;
select gender from students group by gender;

select 分組欄位 from 表名 group by 分組欄位;


-- 計算每種性別中的人數
select gender,count(*) from students group by gender;

 

-- group_concat(...)
-- 查詢同種性別中的姓名
select gender,group_concat(name) from students group by gender;



-- 查詢每組性別的平均年齡
select gender,avg(age) from students group by gender;


-- select * from students where
-- group by xxx having having用在分組條件

-- having(註意having和group by 連用 having後通常也要跟 聚合函數)
-- 查詢平均年齡超過30歲的性別,以及姓名
select gender ,avg(age) from students group by gender having avg(age) > 30;


-- 查詢每種性別中的人數多於2個的信息
select gender,count(*) from students group by gender having count(*) > 2;

 

-- with rollup 彙總的作用(瞭解)
--select gender,count(*) from students group by gender with rollup;
select gender,count(*) from students group by gender with rollup having count(*) >2;


--按性別分組,平均身高大160的女性組的名字
select gender,avg(height),group_concat(name) from students group by gender having avg(height) > 160 and gender='女';


-- limit 起始位置,個數, 這個一定要放在最後
-- 分頁
-- limit start, count
-- limit 放在最後面(註意)

起始位置 = (頁數-1)*每頁的個數

-- 限制查詢出來的數據個數
-- 查詢前5個數據
select * from students limit 0,5;


-- 每頁顯示2個,第1個頁面
select * from students limit 0,2;

-- 每頁顯示2個,第2個頁面
select * from students limit 2,2;

-- 每頁顯示2個,第3個頁面
select * from students limit 4,2;

-- 每頁顯示2個,第4個頁面
select * from students limit 6,2;

 

-- 每頁顯示2個,顯示第6頁的信息, 按照年齡從小到大排序
select * from students order by age asc limit 6,2;
-- 如果重新排序了,那麼會顯示第一頁



-- 連接查詢
-- inner join ... on
-- select ... from 表A inner join 表B;
-- 查詢 有能夠對應班級的學生以及班級信息
select * from students inner join classes on students.cls_id = classes.id;


-- 按照要求顯示姓名、班級
select students.name,classes.name from students inner join classes on students.cls_id = classes.id;


-- 給數據表起名字
select s.name,c.name from students as s inner join classes as c on s.cls_id = c.id;


-- 查詢 有能夠對應班級的學生以及班級信息,顯示學生的所有信息 students.*,只顯示班級名稱 classes.name.
select students.* ,classes.name from students inner join classes on students.cls_id = classes.id;


-- 在以上的查詢中,將班級名顯示在第1列
select classes.name,students.* from students inner join classes on students.cls_id = classes.id;

-- 查詢 有能夠對應班級的學生以及班級信息, 按照班級名進行排序
select classes.name,students.* from students inner join classes on students.cls_id = classes.id order by classes.name asc;



-- 當時同一個班級的時候,按照學生的id進行從小到大排序
select classes.name,students.* from students inner join classes on students.cls_id = classes.id order by classes.name asc,students.id asc;

#如果是group by 條件使用having
#如果是inner join條件使用on 
#其他都用where

-- left join
-- 查詢每位學生對應的班級信息
select * from students left join classes on students.cls_id = classes.id;
左邊的表不管在右邊的表中是否找到數據,都顯示


-- 查詢沒有對應班級信息的學生
select * from students left join classes on students.cls_id = classes.id where classes.name is null;



-- right join on
-- 將數據表名字互換位置,用left join完成

select * from students right join classes on students.cls_id = classes.id;

select * from classes right join students on students.cls_id = classes.id;

 

-- 子查詢
-- 標量子查詢: 子查詢返回的結果是一個數據(一行一列)
-- 列子查詢: 返回的結果是一列(一列多行)
-- 行子查詢: 返回的結果是一行(一行多列)

-- 查詢出高於平均身高的信息(height)
select avg(height) from students;

select * from students where height > 172;

select * from students where height > (select avg(height) from students);

 

-- 查詢學生的班級號能夠對應的 學生名字
select * from students where cls_id in (1,2);

select id from classes;

select * from students where cls_id in (select id from classes);
省市區三級聯動

--數據操作前的準備
--創建資料庫表
create table areas(
aid int primary key,
atitle varchar(20),
pid int
);
--從sql文件中導入數據
-- source 具體地址/areas.sql;
source areas.sql;


--查詢一共有多少個省
select * from areas where pid is null;

--例1:查詢省的名稱為“山西省”的所有城市
select aid from areas where atitle = '山西省';
select * from areas where pid = (select aid from areas where atitle = '山西省');


select * from areas as a1 inner join areas as a2 on a1.pid = a2.aid where a2.atitle='山西省';

--例2:查詢市的名稱為“廣州市”的所有區縣
select * from areas where pid = (select aid from areas where atitle = '廣州市');

select * from areas as a1 inner join areas as a2 on a1.pid = a2.aid where a2.atitle='廣州市';


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

-Advertisement-
Play Games
更多相關文章
  • 1、準備工作 1.1 環境 centos7、jdk8、mysql5.7、python2.7、CDH6 1.2文件下載 1.2.1 cloudmanger地址 https://archive.cloudera.com/cm6/6.0.0/redhat7/yum/RPMS/x86_64/ clouder ...
  • 1 #!/bin/bash 2 # coding: utf-8 3 # Copyright (c) 2018 4 set -e #返回值為0時,退出腳本 5 echo "1. 備份yum" 6 { 7 for i in /etc/yum.repos.d/*.repo;do cp $i ${i%.re ...
  • 歡迎大家前往 "騰訊雲+社區" ,獲取更多騰訊海量技術實踐乾貨哦~ 本文由 "[amc" ](https://cloud.tencent.com/developer/user/1024461?fromSource=waitui)發表於 "雲+社區專欄" 在 C 語言的動態申請記憶體技術中,相比起 /` ...
  • Linux下find命令在目錄結構中搜索文件,並執行指定的操作。Linux下find命令提供了相當多的查找條件,功能很強大。由於find具有強大的功能,所以它的選項也很多,其中大部分選項都值得我們花時間來瞭解一下。即使系統中含有網路文件系統( NFS),find命令在該文件系統中同樣有效,只你具有相 ...
  • 1 #!/bin/bash 2 # coding: utf-8 3 # Copyright (c) 2018 4 5 set -e #返回值為非0時,退出腳本 6 7 echo "0. 系統的一些配置" 8 setenforce 0 || true 9 systemctl stop iptables... ...
  • 我一直比較推薦一些Linux新手使用Deepin Linux,因為我認為這種儘量的follow Windows的系統至少對於新手來說是比較的友好的,而且預裝了QQ 火狐瀏覽器中文版,甚至還移植了像360安全瀏覽器這些,自帶的應用商店等等,去掉了很多至少對於一般的Linux用戶,初學者這些用不到的組件 ...
  • 一、Tomcat安裝 1.下載jdk,Tomcat,解壓到/usr/local/ 2.配置jdk環境:# vim /etc/profile export JAVA_HOME=/usr/local/jdk1.8.0_171 export PATH=$JAVA_HOME/bin:$PATH export ...
  • Linux使用MySQL Yum存儲庫上安裝MySQL 5.6,適用於Oracle Linux,Red Hat Enterprise Linux和CentOS系統。 一、全新安裝MySQL 1、添加MySQL Yum存儲庫 將MySQL Yum存儲庫添加到系統的存儲庫列表中。這是一次性操作,可以通過 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...