MySQL基本命令整理
一、基本命令
1、啟動服務
說明:以管理員身份執行cmd
格式:net start 服務名稱
net start mysql57
2、停止服務
說明:以管理員身份執行cmd
格式:net stop 服務名稱
net stop mysql57
3、連線資料
格式:mysql -u 使用者名稱 -p
mysql -u root -p
輸入密碼(安裝時設定的)
4、退出登入(斷開連線)
quit
exit
5、檢視版本(連線後可以執行)
select version();
6、顯示當前時間(連線後可以執行)
select now();
7、遠端連線
mysql -h ip地址 -u 使用者名稱 -p
輸入對方mysql密碼
二、資料庫操作
1、建立資料庫
格式:create database 資料庫名 charset=utf8;
create database sunck charset=utf8;
2、刪除資料庫
格式:drop database 資料庫名;
drop database sunck;
3、切換資料庫
格式:use 資料庫名;
use sunck;
4、檢視當前選擇的資料庫
select database();
三、表操作
1、檢視當前資料庫中所有表
show tables;
2、建立表
格式:create table 表名(列及型別);
說明:
auto_increment表示自增長
primary key表示主鍵
not null表示不為空
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),
isDelete bit default 0);
3、刪除表
格式:drop table 表名;
drop table student;
4、查看錶結構
格式:desc 表名;
desc student;
5、檢視建表語句
格式:show create table 表名;
show create table student;
6、重命名錶名
格式:rename table 原表名 to 新表名;
rename table car to newCar;
7、修改表
格式:alter table 表名 add|change|drop 列名 型別;
alter table newcar add isDelete bit default 0;
四、資料操作
1、增
a、全列插入
格式:insert into 表名 values(…);
說明:主鍵列是自動增長,但是在全列插入時需要佔位,通常使用0,插入成功以後以實際資料為準
insert into student values(0,”tom”,19,1,”北京”,0);
b、預設插入
格式:insert into 表名(列1,列2,……) values(值1,值2,……);
insert into student(name,age,address) values(“lilei”,19,”上海”);
c、同時插入多條資料
格式:insert into 表名 values(…),(…),……
insert into student values
(0,”hanmeimei”,18,0,”北京”,0),
(0,”poi”,22,1,”海南”,0),
(0,”wenli”,20,0,”石家莊”,0);
2、刪
格式:delete from 表名 where 條件;
delete from student where id=4;
注意:沒有條件是全部刪除,慎用
3、改
格式:update 表名 set 列1=值1,列2=值2,…… where 條件;
update student set age=16 where id=7;
注意:沒有條件是全部列都修改,慎用
4、查
說明:查詢表中的全部資料
select * from 表名;
示例:select * from student;
5、匯出資料庫
mysqldump –no-defaults -uroot -p 需要匯出的庫名 > 儲存檔名.sql
mysqldump –no-defaults -uroot -p mydb > db.sql
將mydb資料庫匯出為db.sql檔案
五、查
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;
2、消除重複行
在select後面列前面使用distinct可以消除重複的行
select gender from student;
select distinct gender from student;
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、模糊查詢
like
%表示任意多個任意字元
_表示一個任意字元
需求:查詢姓習的同學
示例:
先增加兩個內容:
insert into student values(0,”習近平”,65,1,”北京”,0);
insert into student values(0,”習大”,66,1,”北京”,0);
然後查詢:
select * from student where name like “習%”;
select * from student where name like “習_”;
e、範圍查詢
in 表示在一個非連續的範圍內
between…and… 表示在一個連續的範圍內
需求:查詢編號為8、10、12的學生
select * from student where id in (8,10,12);
需求:查詢編號為6到8的學生
select * from student where id between 6 and 8;
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,需要結合()來使用
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 sum(age) from student;
需求:查詢所有學生的年齡平均值
select avg(age) from student;
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,…… having 列1,……聚合……;
select gender,count(*) from student group by gender having gender;
where與having的區別:
where是對from後面指定的表進行篩選,屬於對原始資料的篩選
having是對group by的結果進行篩選
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;
7、分頁
語法:select * from 表名 limit start,count;
說明:start索引從0開始
select * from student limit 0,3;
select * from student limit 3,3;
select * from student where gender=1 limit 0,3;
六、關聯
建表語句:
1、
create table class
(
id int auto_increment primary key,
name varchar(20) not null,
stuNum int not null);
2、
create table students
(
id int auto_increment primary key,
name varchar(20) not null,
gender bit default 1,
classid int not null,
foreign key(classid) references class(id));
插入一些資料:
insert into class values
(0, “python01”, 55),
(0, “python02”, 50),
(0, “python03”, 60),
(0, “python04”, 80);
insert into students values(0, “tom”, 1, 1);
insert into students values(0, “lilei”, 1, 10);
insert into students values(0, “jack”, 1, 2);
select * from students;
關聯查詢:
select students.name,class.name from class inner join students on class.id=students.classid;
select students.name,class.name from class left join students on class.id=students.classid;
select students.name,class.name from class right join students on class.id=students.classid;
分類:
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填充