mysqlmysql
1) 鏈接(略)
2) 管理:linux
#MySQL接口自帶的命令 \h 或 help 或? 查看幫助 \G 格式化查看數據(key:value) \T 或 tee 記錄日誌(臨時) 永久有效加入客戶端配置文件中,不用重啓 \c(5.7能夠ctrl+c) 結束命令 5.6能夠直接退出數據庫 \s 或 status 查看狀態信息 \. 或 source 導入SQL數據 \u或 use 使用數據庫 \q 或 exit 或 quit 退出 system 或\! 敲命令
3)接收用戶的SQL語句sql
mysqldump數據庫
help命令的使用vim
mysql> help mysql> help contents mysql> help select mysql> help create mysql> help create user mysql> help status mysql> help show
source命令的使用緩存
#在MySQL中處理輸入文件: #若是這些文件包含SQL語句則稱爲: #1.腳本文件 #2.批處理文件 mysql> SOURCE /data/mysql/world.sql #或者使用非交互式 mysql</data/mysql/world.sql
mysqladmin命令的使用服務器
01)「強制迴應 (Ping)」服務器。
02)關閉服務器。
03)建立和刪除數據庫。
04)顯示服務器和版本信息。
05)顯示或重置服務器狀態變量。
06)設置口令。
07)從新刷新受權表。
08)刷新日誌文件和高速緩存。
09)啓動和中止複製。
10)顯示客戶機信息。ide
#查看MySQL存活狀態 #前提在配置文件中配置成可客戶端 [client] mysqladmin ping #判斷mysql命令是否存活,腳本中寫絕對路徑,不然不識別 [root@db01 ~]# mysqladmin -uroot -p123 ping #查看MySQL狀態信息 [root@db01 ~]# mysqladmin -uroot -p123 status #關閉MySQL進程 [root@db01 ~]# mysqladmin -uroot -p123 shutdown #查看MySQL參數 [root@db01 ~]# mysqladmin -uroot -p123 variables #刪除數據庫 [root@db01 ~]# mysqladmin -uroot -p123 drop DATABASE #建立數據庫 [root@db01 ~]# mysqladmin -uroot -p123 create DATABASE #重載受權表 [root@db01 ~]# mysqladmin -uroot -p123 reload #刷新binlog日誌 [root@db01 ~]# mysqladmin -uroot -p123 flush-log #刷新緩存主機 [root@db01 ~]# mysqladmin -uroot -p123 reload #修改口令 [root@db01 ~]# mysqladmin -uroot -p123 password
結構化的查詢語句函數
DDL:數據定義語言ui
庫對象:庫名字、庫屬性
開發規範:庫名小寫
==比較危險,刪庫是默認刪除小寫,通常不設置==
建立庫:create database|schema
#建立oldboy數據庫 mysql> create database oldboy; #建立OLDBOY數據庫 mysql> create database OLDBOY; #查看數據庫 mysql> show databases; #查看oldboy的建立語句(DQL) mysql> show create database oldboy; #查看建立數據庫語句幫助 mysql> help create database #建立oldboy數據庫添加屬性 mysql> create database if not exists testa collate utf8_general_ci charset utf8; #查詢字符集,校驗規則 mysql> show global variables like '%server'; +----------------------+-----------------+ | Variable_name | Value | +----------------------+-----------------+ | character_set_server | utf8 | | collation_server | utf8_general_ci | +----------------------+-----------------+ 2 rows in set (0.00 sec)
刪庫:drop database
#刪除oldboy數據庫 mysql> drop database oldboy;
修改定義庫:alter database
#修改oldboy數據庫屬性 mysql> alter database oldboy charset gbk; #查看oldboy的建立語句(DQL) mysql> show create database oldboy; #修改校驗規則 mysql>alter database oldboy collate utf8_bin
表對象:列名、列屬性、約束
建立表:create table (開發作)
#查看建立表語句幫助 mysql> help create table #建立表 mysql> create table student( sid INT, sname VARCHAR(20), sage TINYINT, sgender ENUM('m','f'), cometime DATETIME);
數據類型
int: 整數 -2^31 ~ 2^31 -1 (zerofill用0自動補全)
varchar:字符類型 (變長)
char: 字符類型 (定長)
tinyint: 整數 -128 ~ 128
enum: 枚舉類型
datetime: 時間類型 年月日時分秒 8字節timestamp 4字節 ,2038年過時
#建立表加其餘屬性 mysql> create table student( sid INT NOT NULL PRIMARY KEY AUTO_INCREMENT COMMENT ‘學號’, sname VARCHAR(20) NOT NULL COMMENT ‘學生姓名’, sage TINYINT UNSIGNED COMMENT ‘學生年齡’, sgender ENUM('m','f') NOT NULL DEFAULT ‘m’ COMMENT ‘學生性別’, cometime DATETIME NOT NULL COMMENT ‘入學時間’)chatset utf8 engine innodb; #查看建表語句 mysql> show create table student; #查看錶 mysql> show tables; #查看錶中列的定義信息 mysql> desc student;#查看錶 mysql> show create table student;#查看註釋 #正規建表 create table student2( sid int not null primary key auto_increment comment '學號', sname varchar(10) not null comment '學生姓 名', sage tinyint unsigned comment '學生年齡', sgender enum('m','f') not null default 'm' comment '學生性別', datetime not null default now() comment '入學時間');
約束: not null: 非空 auto_increment: 自增 primary key: 主鍵 (惟一,切非空) unique key: 單獨的惟一的(能夠爲空) pk=uk+not null default: 默認值 unsigned: 非負數 comment: 註釋
刪除表
#刪除表 mysql> drop table student;
修改表定義:alter table (開發作)
#修改表名 mysql> alter table student rename stu; #添加列和列定義 mysql> alter table stu add age int; #添加多個列 mysql> alter table stu add test varchar(20),add qq int; #指定位置進行添加列(表首) mysql> alter table stu add classid varchar(20) first; #指定位置進行添加列(指定列) mysql> alter table stu add phone int after age;#注意前面加入的, #刪除指定的列及定義 mysql> alter table stu drop qq; #修改列及定義(列屬性) mysql> alter table stu modify sid varchar(20); #修改列及定義(列名及屬性) mysql> alter table stu change phone telphone char(20); #mysql 5.7版本改密碼 alter user root@'localhost' identified by '123';\
DCL:數據控制語言
針對權限進行控制
grant
#受權root@10.0.0.51用戶全部權限(非炒雞管理員) mysql> grant all on *.* to root@'10.0.0.51' identified by 'oldboy123'; #怎麼去受權一個炒雞管理員呢?(priviliges) mysql> grant all on *.* to root@'10.0.0.51' identified by 'oldboy123' with grant option; #其餘參數(擴展) max_queries_per_hour:一個用戶每小時可發出的查詢數量 max_updates_per_hour:一個用戶每小時可發出的更新數量 max_connetions_per_hour:一個用戶每小時可鏈接到服務器的次數 max_user_connetions:容許同時鏈接數量
revoke
#查看庫權限的 show grants for pril@'%'; #收回select權限 mysql> revoke select on *.* from root@'10.0.0.51'; #查看權限 mysql> show grants for root@'10.0.0.51';
DML:數據操做語言
操做表的數據行信息
insert
#基礎用法,插入數據,前面不寫,全部值一一對應,沒有給null mysql> insert into stu values('linux01',1,NOW(),'zhangsan',20,'m',NOW(),110,123456); #規範用法,插入數據 (只需跟前面的key值相對應) mysql> insert into stu(classid,birth.sname,sage,sgender,comtime,telnum,qq) values('linux01',1,NOW(),'zhangsan',20,'m',NOW(),110,123456); #插入多條數據 mysql> insert into stu(classid,birth.sname,sage,sgender,comtime,telnum,qq) values('linux01',1,NOW(),'zhangsan',20,'m',NOW(),110,123456), ('linux02',2,NOW(),'zhangsi',21,'f',NOW(),111,1234567);
update
#不規範 mysql> update student set sgender='f'; #規範update修改 mysql> update student set sgender='f' where sid=1; #若是非要全表修改,where後面先敲出來 mysql> update student set sgender='f' where 1=1;
delete
#不規範 mysql> delete from student; #規範刪除(危險),刪除表裏面的內容,drop刪除表,必須接條件 mysql> delete from student where sid=3;#範圍 sid>2 and sid<10 #DDL刪除表,一下刪除 mysql> truncate table student;
使用update代替delete
1)額外添加一個狀態列
mysql> alter table student add status enum('1','0') default 1;#添加字段 status
2)使用update
mysql> update student set status='0' where sid=1;
3)應用查詢存在的數據後面接條件
mysql> select * from student where status=1;
trigger
DQL:數據查詢語言
select:基礎用法
#經常使用用法 mysql> select countrycode,district from city; #查詢單列 mysql> select countrycode from city; #行級查詢 mysql> select countrycode,district from city limit 2; mysql> select id,countrycode,district from city limit 2,2; #條件查詢 mysql> select name,population from city where countrycode='CHN'; #多條件查詢 mysql> select name,population from city where countrycode='CHN' and district='heilongjiang'; #模糊查詢 mysql> select name,population,countrycode from city where countrycode like '%H%' limit 10; mysql> select * from city where countrycode like 'H%'; mysql> select * from city where countrycode like '%H'; #排序查詢(順序) mysql> select id,name,population,countrycode from city order by countrycode limit 10; #排序查詢(倒敘) mysql> select id,name,population,countrycode from city order by countrycode desc limit 10; #範圍查詢(>,<,>=,<=,<>(!=)) mysql> select * from city where population>=1410000; #範圍查詢OR語句 mysql> select * from city where countrycode='CHN' or countrycode='USA'; #範圍查詢IN語句 mysql> select * from city where countrycode in ('CHN','USA'); #去重 mysql> select count(distinct(sgender)) from student2; #group by + 聚合函數 #聚合函數種類: #max() #min() #avg() #sum() #count() #distinct() #password() mysqladmin -uroot -p123 password 1 #now() #database() +------------+ | database() | +------------+ | world | +------------+ #此時此刻,我想吟詩一首 1.遇到統計想函數 2.形容詞前groupby 3.函數中央是名詞 4.列名select後添加 #方便查看相關聯的字段 mysql> select * from world.city limit 1\G #統計世界上每一個國家的總人口數 select countrycode,sum(population) from city group by countrycode; #統計中國各個省的人口數量(練習) 不加別名: mysql> select District,sum(population) from city where countrycode='CHN' group by District order by sum(population); 別名: mysql> select District as 省,sum(population) as 人口 from city where countrycode='CHN' group by 省 order by 人口; #統每一個國家的城市數量(練習) select countrycode,count(name) from city group by countrycode order by count(name); mysql> select countrycode,count(name) from city where countrycode='chn' group by countrycode order by count(name); #and mysql> select * from city where countrycode='CHN' and id>500; #or mysql> select * from city where countrycode='CHN' or countrycode='USA'; #in mysql> select * from city where countrycode in ('CHN','USA'); ####### 聯合查詢 效率比in和or高 mysql> select * from city where countrycode='CHN' union all select * from city where countrycode='USA';
字符集:是一個系統支持的全部抽象字符的集合。字符是各類文字和符號的總稱,包括各國家文字、標點符號、圖形符號、數字等。

1)字符集(CHARACTER)
2)校對規則(COLLATION)
1)UTF8
2)LATIN1
3)GBK
mysql> show charset; mysql> show collation;
#查詢字符集,校驗規則 mysql> show global variables like '%server'; +----------------------+-----------------+ | Variable_name | Value | +----------------------+-----------------+ | character_set_server | utf8 | | collation_server | utf8_general_ci | +----------------------+-----------------+ 2 rows in set (0.00 sec) mysql> show global variables like '%server'; +----------------------+-----------------+ | Variable_name | Value | +----------------------+-----------------+ | character_set_server | utf8 | | collation_server | utf8_general_ci | +----------------------+-----------------+ 2 rows in set (0.00 sec) mysql> mysql> select * from schemata; +--------------+--------------------+----------------------------+------------------------+--- | CATALOG_NAME | SCHEMA_NAME | DEFAULT_CHARACTER_SET_NAME | DEFAULT_COLLATION_NAME | SQ +--------------+--------------------+----------------------------+------------------------+--- | def | information_schema | utf8 | utf8_general_ci | NU | def | linux50 | utf8 | utf8_general_ci | NU | def | lq | utf8 | utf8_general_ci | NU | def | mysql | utf8 | utf8_general_ci | NU | def | performance_schema | utf8 | utf8_general_ci | NU | def | world | utf8 | utf8_general_ci | NU +--------------+--------------------+----------------------------+------------------------+--- 6 rows in set (0.00 sec)
[root@db01 ~]# source /etc/sysconfig/i18n [root@db01 ~]# echo $LANG zh_CN.UTF-8 vim /etc/locale.conf LANG="en_US.UTF-8"
方法1:在編譯安裝時候就指定以下服務器端字符集。
cmake . -DDEFAULT_CHARSET=utf8 \ -DDEFAULT_COLLATION=utf8_general_ci \ -DWITH_EXTRA_CHARSETS=all \
方法2:在配置文件中設置字符集
修改配置文件 [mysqld] character-set-server=utf8 臨時 mysql>set character_set_server=utf8
mysql> create database oldboy charset utf8 default collate = utf8_general_ci;
5.建表級別
修改數據庫的字符集
alter database lq charset utf8;
修改表的字符集
alter table student charset utf8
企業中修改某個庫中的全部表字符集
# mysqldump -uroot -p123 -B xx > /tmp/xx.sql # vim /tmp/xx.sql # :%s#gbk#utf8#g # mysql -uroot -p123 < /tmp/xx.sql
mysql> CREATE TABLE `test` ( `id` int(4) NOT NULL AUTO_INCREMENT, `name` char(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;
思考問題:若是在生產環境中,字符集不夠用或者字符集不合適該怎麼處理?


集合:
[zhang3,li4,wang5]
[50,70,80]
t1:
sid 1 2 3
sname zhang3 li4 wang5
t2:
sid 1 2 3
mark 50 70 80
範式: 減小數據冗餘,防止產生一致性問題,把一個表做爲一個原子,把一張表拆到不能再拆爲止。(開發階段設計規範)
例:根據兩張表的內容查出張三的成績
select t1.sname,t2.mark from t1,t2 where t1.sid=t2.sid and t1.sname=’zhang3’;
1.1傳統鏈接(只能內鏈接,只能取交集)
#世界上小於100人的人口城市是哪一個國家的? select city.name,city.countrycode,country.name from city,country where city.countrycode=country.code and city.population<100;
1.2 NATURAL JOIN(自鏈接的表要有共同的列名字)
# 人口數量大於1000000的城市所在的國家,他們都說什麼語言? city.population,city.name,city.countrycode,countrylanguage.language select city.population,city.name,city.countrycode,countrylanguage.language from city,countrylanguage where city.countrycode=countrylanguage.countrycode and city.population > 1000000; # 人口數量大於1000000的城市所在的國家,他們都說什麼語言? (自鏈接) select city.population,city.name,city.countrycode,countrylanguage.language from city natural join countrylanguage where city.population > 1000000; 前提條件:必定要有相同的列名字,而且列中的數據一致
1.3企業中多表鏈接查詢(內鏈接)
#查世界上人口數量小於100的城市在哪一個國家,城市和國家人口數量分別是多少? select city.name,city.population,country.name,country.population from city,country where city.countrycode=country.code and city.population<100; select city.name,city.population,country.name,country.population from city join country on city.countrycode=country.code where city.population<100; #世界上人口數量小於100的城市在哪一個國家,說的什麼語言? ·A join B on 1 join C on 2 join D on 3· select city.population,city.name,country.name,countrylanguage.language from city,country,countrylanguage where city.countrycode=country.code and countrylanguage.countrycode=country.code and city.population < 100; select city.population,city.name,country.name,countrylanguage.language from city join country on city.countrycode=country.code join countrylanguage on countrylanguage.countrycode=country.code where city.population < 100;
==建議==:小表在前,大表在後
1.4外鏈接(能夠加判斷)
#左外鏈接 mysql> select city.name as 城市名稱,country.code as 國家代碼,country.name as 國家名稱 from city left join country on city.countrycodde=country.code and city.population<100 limit 10; #右外鏈接 mysql> select city.name as 城市名稱,country.code as 國家代碼,country.name as 國家名稱 from city right join country on city.countrycodde=country.code and city.population<100 limit 10;
1.5 UNION(合併查詢)
#範圍查詢OR語句 mysql> select * from city where countrycode='CHN' or countrycode='USA'; #範圍查詢IN語句 mysql> select * from city where countrycode in ('CHN','USA'); 替換爲: mysql> select * from city where countrycode='CHN' union all select * from city where countrycode='USA' limit 10
union:去重複合併
union all :不去重複
使用狀況:union<union all
mysql> use mysql mysql> select password from user; +-------------------------------------------+ | password | +-------------------------------------------+ | *E6CC90B878B948C35E92B003C792C46C58C4AF40 | | | | | | | +-------------------------------------------+ #修改成空 mysql> update user set password=null where password='加密'; Query OK, 4 rows affected, 4 warnings (0.00 sec) Rows matched: 4 Changed: 4 Warnings: 4 #刷新受權表 mysql> flush privileges;