mysql 在cmd中操作
cmd中不區分大小寫,不管輸入大寫還是小寫,統一顯示小寫
SQL語句結束時一定要加;
首先進入安裝資料庫目錄下進入F: 然後 cd mysql-8.0.12-winx64/bin(安裝目錄下)
一、基本命令
1、啟動說明
說明:以管理員的身份執行cmd
格式:net start 服務名稱
示例:net start mysql57
123
2、停止服務
說明:以管理員的身份執行cmd
格式:net stop 服務名稱
示例:net stop mysql57
123
3、連線資料
格式:mysql -uroot -p
mysql -hlocalhost -uroot -p
mysql -hIP地址 -uroot -p
說明:-h HOST 主機名
-u USER 使用者
-p PASSWORD 設定的密碼
root 使用者,超級管理員,不可進行遠端訪問
1234567
4、退出登入(斷開連線)
quit或exit
1
5、檢視版本(連線後可以執行)
示例:select version();
1
6、顯示當前的時間(連線後可以執行)
示例:select now();
1
7、遠端連線
格式:mysql -hIP地址 -uroot -p
輸入對方的mysql密碼
12
二、資料庫的操作
1、建立資料庫
格式1:create database 資料庫名 charset=utf8;
示例1:create database stu charset=utf8;
格式2:create database if not exists 資料庫名 character set utf8;
說明:如果該資料庫不存在則建立該資料庫
示例2:create database if not exists stu character set utf8;
12345
2、刪除資料庫
格式1:drop database 資料庫名;
示例1:drop database sunck;
格式2:drop database if exists 資料庫名;
說明:防止執行刪除不存在的庫報錯
示例2:drop database if exists sunck;
12345
3、切換資料庫
格式:use 資料庫名;
示例:use sunck;
12
4、檢視當前選擇的資料庫
select database();
1
5、檢視所有的資料庫
show databases;
1
6、檢視所建立的庫
三、事務處理
1.修改當前表的引擎是否為innoDB
alter table 表名 engine = innoDB
1
2、查詢是否為自動提交
select @@autocommit = 0
1
3、設定手動提交
set autocommit = 0
1
4、執行事務的程式碼
程式碼塊
1
5、執行提交或者回滾
commit work 提交
rollback work 回滾
12
四、表的操作
1、檢視當前資料庫中的所有表
show tables;
1
2、清空表
truncate 表名
1
3、建立表
格式:create table 表名(列及型別);
說明:
auto_increment 表示自增長
primary key 表示主鍵
not null 表示不為空
unique 表示唯一
示例:create table student (id int auto_increment primary key,name varchar(20) not null,age int not null,gender bit default 1,address varchar(20),isDelect bit default 0);
1234567
4、刪除表
格式:drop table 表名;
示例:drop table student;
12
5、查看錶結構
格式:desc 表名;
示例:desc student;
查看錶的詳細語句:desc 表名 \G 豎看
123
6、檢視建表語句
格式:show create table 表名;
示例:show ceate table student;
12
7、重命名錶名
格式:rename table 原表名 to 新表名;
示例:rename table car to newCar;
格式2: alter table 表名 rename 新表名
示例:alter table car rename newCar;
1234
8、修改表
格式:alter table 表名 add| change| drop 列名 型別;
示例:alter table newCar add isDelete bit default 0;修改預設值等
12
1、更改索引:
格式:alter table 表名 add 索引名(列名);
示例:alter table newCar add unique(id);
12
2、為已經建立好的表新增外來鍵
格式:alter table 表名 add constraint FK_ID foreign key(你的外來鍵欄位名) REFERENCES 外表表名(對應的表的主鍵欄位名);
示例: alter table tb_active add constraint FK_ID foreign key(id) REFERENCES tb_user(id)
12
3、給表新增新的欄位(預設排在最後)
alter table 表名 add 欄位名 欄位型別 約束條件
1
4、新增的欄位排在某個位置
alter table 表名 add 欄位名 欄位型別 約束條件
first 排在第一位
after 欄位名排在某個欄位後面
123
9、建立一個和a一樣表結構的表b
五、資料操作
1、增
a、全列插入
格式:insert into 表名 values(...);
說明:主鍵列是自動增長的,但是全列插入時需要佔位,通常使用0,插入成功以後以實際資料為準
示例:insert into student values(0,"Tom",19,1,"北京",0);
123
b、預設插入
格式:insert into 表名(列1,列2,……) values(值1,值2,……);
示例:insert into student(name,age,address) values("Lilei",19,"深圳");
12
c、同時插入多條資料
格式:insert into 表名 values(...),(...),……
示例:insert into student values(0,"hanmeimei",18,0,"北京",0),(0,"poi",19,1,"北京",0),(0,"Bob",20,1,"上海",0);
格式:insert into 表名[(指定的欄位)] value(值),(值)……
說明:給指定欄位插入多個值
示例:insert into student(username) values("hanmeimei"),("poi");
12345
d、快速插入值
格式:insert into 表名[(欄位名)] select 欄位[,*] from 表名;
insert into a select * from a;
說明:將表中現有的資料進行復制並加入到本表中
示例:insert into a(username) select username from a
注意:欄位的值和欄位的名是一一對應的
1234567
2、刪
a、刪除資料
格式:delete from 表名 where 條件;
示例:delete from student where id=4
注意:沒有條件就是全部刪除
123
b、清空表的方式
1.格式:truncate 表名 自增回原位
2.格式:delete from 表名 刪除表中的所有資料
示例:delete from a;
alter table 表名 auto_increment=1 把自增設定為1
注意:刪除的時候,如果沒有條件語句,會刪除所有的資料
刪除後的資料,自增依然記錄當前的資料的位置
1234
3、改
1.格式:updata 表名 set 列1=值1,列2=值2,……where 條件;
示例:updata student set age=16 where id=7;
注意:沒有條件預設全部列都修改
12
2.所有的年齡的基礎上加2
updata a set age=age+2;
1
4、查
說明:查詢表中的所有資料
格式:select * from 表名;
示例:select * from student;
123
六、查
1、基本語法
格式:select * from 表名;
說明:
a、from關鍵字後面寫表中的表名,表示資料來源於這張表
b、select後面寫表的列名,如果是*表示在結果集中顯示錶中的所有列
c、在select後面的列名部分,可以使用as 為列起別名,這個別名顯示在結果集中
d、如果要查詢多個列,之間使用逗號分隔。
示例:
select * from student;
select name,age from student;
select name as a,age from student;
12345678910
2、消除重複行
在select後面列前面使用distinct可以消除重複的行
示例:
select gender from student;
select distinct gender from student;
1234
3、條件查詢
a、語法
select * from 表名 where 條件;
b、比較運算子
等於 =
大於 >
小於 <
大於等於 >=
小於等於 <=
不等於 !=或<>
需求:查詢id大於8的所有值
示例:select * from student where id>8;
c、邏輯運算子
and 並且
or 或者
not 非
需求:查詢id大於7的女同學
示例:select * from student where id>7 and gender=0;
d、模糊查詢
insert into student values(0,"Bob",30,1,"北京",0);
insert into student values(0,"Ba",20,1,"北京",0);
like:
%表示任意多個任意字元
—表示一個任意字元
需求:查詢以B為首的同學
示例:
select * from student where name like "B%";
select * from student where name like "B_";
e、範圍查詢
in:表示在一個非連續的範圍內
示例:select * from a where age in(18,20);
a:表名
age:列名
select * from a where age 18 or 20;
between。。。and。。。:表示在一個連續的範圍內
示例:select * from a where age between 18 and 20;
a:表名
age:列名
select * from a where age>=18 and age<=20;
not between and 不在。。。之間
示例:select * from a where age not between 18 and 20;
a:表名
age:列名
select * from a where age<18 or age>20;
f、空判斷
insert into student(name,age) values("川普",70);
注意:null 與 ""不同
判斷空:is null
判斷非空:is not null
需求:查詢沒有地址的同學
示例:select * from student where address is null;
需求:查詢有地址的同學
示例:select * from student where address is not null;
g、優先順序
小括號,not,比較運算子,邏輯運算子
and 比or優先順序高,如果同時出現並希望先選or,需要結合()來使用
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
4、聚合
為了快速等到統計資料,提供了5個聚合函式
a、count(*) 表示計算總行數,括號中可以寫*和列名
b、max(列) 表示求此列的最小值
c、min(列) 表示求此列的最小值
d、sum(列) 表示求此列的和
e、avg(列) 表示求此列的平均值
需求:查詢學生的總數
示例:select count(*) from student;
需求:查詢女生的編號最大值
示例:select max(id) from student where gender=0;
需求:查詢女生編號的最小值
示例:select min(id) from student where gender=0;
需求:求所有學生的年齡和
示例:select sun(age) from student;
需求:查詢所有學生年齡的平均值
示例:select avg(age) from student;
1234567891011121314151617
5、分組
按照欄位分組,表示此欄位相同的資料會被放到一個集合中。
分組後, 只能查詢出相同的資料列,對於有差異的資料列無法顯示在結果集中
可以對分組後的資料進行統計,做聚合運算
語法:select 列1,列2,聚合……from 表名 group by 列1,列2,列3,……;
需求:查詢男女生總數
示例:
select gender,count(*) from student group by gender;
select name,gender count(*) from student group by gender,age;
分組後的資料篩選:select 列1,列2,聚合…… from 表名 group by 列1,列2,列3,……hanving 列1,……聚合……;
示例:select gender,count(*) from student group by gender having gender;
where和having的區別:
where是對from後面的指定的表進行篩選,屬於對原始資料的篩選
having是對group by 的結果進行篩選
123456789101112131415
6、排序
語法:select * from 表名 order by 列1 asc|desc,列2 asc|desc,……;
說明:
a、將資料按照列1進行排序,如果某些列1的值相同,則按照列2進行排序
b、預設按照從小到大的順序排序
c、asc升序
d、desc降序
需求:將沒有被刪除的資料按年齡排序
示例:
select * from student where isDelete=0 order by age desc;
select * from student where isDelete=0 order by age desc,id desc;
12345678910
7、分頁
語法:select * from 表名 limit start,count;
說明:start索引從0開始
示例:
select * from student limit 0,3;
select * from student limit 3,3;
12345
七、關聯
多表聯查
1) 隱式內連線查詢
select * from goods,user where `user`.id=goods.uid and uid=1
select `user`.id,`user`.username,goods,goodsname fom goods,user where `user`.id = goods,uid and uid=1
2)顯式內連線查詢 inner join
select * from user INNER JOIN goods on `user`.id=goods.uid and`user`.id=2
說明:A表 inner join b表 on 條件
3) 左關聯 left join
select * from user LEFT JOIN goods on `user`.id=goods.uid and `user`.id=2
注意:左關聯以左表為主表,右表為輔表,會將主表所有的資料查詢出來,輔表沒有關聯匹配上的資料,用null表示
4)右關聯 right join
select * from user RIGHT JOIN goods on `user`.id=goods.uid and `user`.id=2
注意:左關聯以右表為主表,左表為輔表,會將主表所有的資料查詢出來,輔表沒有關聯匹配上的資料,用null表示
5)分類
1、表A inner join 表B:表A與表B匹配的行會出現在結果集中
2、表A left join 表B:表A與表B匹配的行會出現在結果集中,外加表A中獨有的資料,未對應的資料使用null填充
3、表A right join 表B: 表A與表B匹配的行會出現在結果集中,外加表B中獨有的資料,未對應的資料使用null填充
1234567891011121314151617
八、某些操作
當你輸入失誤的時候,可以用\c退出,重新輸入
mysql>show tables'
'>\c
'>\c 預設為引號內的內容,所以不會退出
'>' 再加一個引號結束之後再用\c退出就可以
>\c
mysql>
---------------------
作者:EVA-xue
來源:CSDN
原文:https://blog.csdn.net/qq_35517448/article/details/78586237
版權宣告:本文為博主原創文章,轉載請附上博文連結!