MySQL命令大全
數(shù)據(jù)庫(kù)目錄
/var/lib/mysql/
配置文件
/usr/share/mysql(mysql.server命令及配置文件)
相關(guān)命令
/usr/bin(mysqladmin mysqldump等命令)
啟動(dòng)腳本
/etc/init.d/mysql(啟動(dòng)腳本文件mysql的目錄)
系統(tǒng)管理
連接MySQL
格式: mysql -h 主機(jī)地址 -u用戶名 -p用戶密碼
例 1:連接到本機(jī)上的 MySQL。
hadoop@ubuntu:~$ mysql -uroot -pmysql;
例 2:連接到遠(yuǎn)程主機(jī)上的 MYSQL。
hadoop@ubuntu:~$ mysql -h 127.0.0.1 -uroot -pmysql;
修改新密碼
在終端輸入:mysql -u用戶名 -p密碼,回車進(jìn)入Mysql。
> use mysql;
> update user set password=PASSWORD('新密碼') where user='用戶名';
> flush privileges; #更新權(quán)限
> quit; #退出
增加新用戶
格式:grant select on 數(shù)據(jù)庫(kù).* to 用戶名@登錄主機(jī) identified by '密碼'
舉例:
例 1:增加一個(gè)用戶 test1 密碼為 abc,讓他可以在任何主機(jī)上登錄,并對(duì)所有數(shù)據(jù)庫(kù)有
查詢、插入、修改、刪除的權(quán)限。首先用以 root 用戶連入 MySQL,然后鍵入以下命令:
mysql>grant select,insert,update,delete on *.* to root@localhost identified by 'mysql';
或者
grant all privileges on *.* to root@localhost identified by 'mysql';
然后刷新權(quán)限設(shè)置。
flush privileges;
例 2:如果你不想 root 有密碼操作數(shù)據(jù)庫(kù)“mydb”里的數(shù)據(jù)表,可以再打一個(gè)命令將密碼消掉。
grant select,insert,update,delete on mydb.* to root@localhost identified by '';
刪除用戶
hadoop@ubuntu:~$ mysql -u用戶名 -p密碼
mysql>delete from user where user='用戶名' and host='localhost';
mysql>flush privileges;
//刪除用戶的數(shù)據(jù)庫(kù)
mysql>drop database dbname;
數(shù)據(jù)庫(kù)操作
顯示所有的數(shù)據(jù)庫(kù)
mysql> show databases;(注意:最后有個(gè) s)
創(chuàng)建數(shù)據(jù)庫(kù)
mysql> create database test;
連接數(shù)據(jù)庫(kù)
mysql> use test;
查看當(dāng)前使用的數(shù)據(jù)庫(kù)
mysql> select database();
當(dāng)前數(shù)據(jù)庫(kù)包含的表信息
mysql> show tables; (注意:最后有個(gè) s)
刪除數(shù)據(jù)庫(kù)
mysql> drop database test;
表操作
備注:操作之前使用“use <數(shù)據(jù)庫(kù)名>”應(yīng)連接某個(gè)數(shù)據(jù)庫(kù)。
建表
命令:create table <表名> (<字段名 1> <類型 1> [,..<字段名 n> <類型 n>]);
例子:
mysql> create table MyClass(
> id int(4) not null primary key auto_increment,
> name char(20) not null,
> sex int(4) not null default '0',
> degree double(16,2));
獲取表結(jié)構(gòu)
命令: desc 表名,或者show columns from 表名
例子:
mysql> describe MyClass
mysql> desc MyClass;
mysql> show columns from MyClass;
刪除表
命令:drop table <表名>
例如:刪除表名為 MyClass 的表
mysql> drop table MyClass;
插入數(shù)據(jù)
命令:insert into <表名> [( <字段名 1>[,..<字段名 n > ])] values ( 值 1 )[, ( 值 n )]
例子:
mysql> insert into MyClass values(1,'Tom',96.45),(2,'Joan',82.99), (2,'Wang', 96.59);
查詢表中的數(shù)據(jù)
查詢所有行
mysql> select * from MyClass;
查詢前幾行數(shù)據(jù)
例如:查看表 MyClass 中前 2 行數(shù)據(jù)
mysql> select * from MyClass order by id limit 0,2;
或者
mysql> select * from MyClass limit 0,2;
刪除表中數(shù)據(jù)
命令:delete from 表名 where 表達(dá)式
例如:刪除表 MyClass 中編號(hào)為 1 的記錄
mysql> delete from MyClass where id=1;
修改表中數(shù)據(jù)
命令:update 表名 set 字段=新值,... where 條件
mysql> update MyClass set name='Mary' where id=1;
在表中增加字段
命令:alter table 表名 add 字段 類型 其他;
例如:在表 MyClass 中添加了一個(gè)字段 passtest,類型為 int(4),默認(rèn)值為 0
mysql> alter table MyClass add passtest int(4) default '0'
更改表名
命令:rename table 原表名 to 新表名;
例如:在表 MyClass 名字更改為 YouClass
mysql> rename table MyClass to YouClass;
更新字段內(nèi)容
命令:update 表名 set 字段名 = 新內(nèi)容
update 表名 set 字段名 = replace(字段名, '舊內(nèi)容', '新內(nèi)容');
例如:文章前面加入 4 個(gè)空格
update article set content=concat(' ', content);
數(shù)據(jù)庫(kù)導(dǎo)入導(dǎo)出
從數(shù)據(jù)庫(kù)導(dǎo)出數(shù)據(jù)庫(kù)文件
使用“mysqldump”命令
首先進(jìn)入 DOS 界面,然后進(jìn)行下面操作。
1)導(dǎo)出所有數(shù)據(jù)庫(kù)
格式:mysqldump -u [數(shù)據(jù)庫(kù)用戶名] -p -A>[備份文件的保存路徑]
2)導(dǎo)出數(shù)據(jù)和數(shù)據(jù)結(jié)構(gòu)
格式:mysqldump -u [數(shù)據(jù)庫(kù)用戶名] -p [要備份的數(shù)據(jù)庫(kù)名稱]>[備份文件的保存路徑]
舉例:
例 1:將數(shù)據(jù)庫(kù) mydb 導(dǎo)出到 e:MySQLmydb.sql 文件中。
打開(kāi)開(kāi)始->運(yùn)行->輸入“cmd”,進(jìn)入命令行模式。
c:> mysqldump -h localhost -u root -p mydb >e:MySQLmydb.sql
然后輸入密碼,等待一會(huì)導(dǎo)出就成功了,可以到目標(biāo)文件中檢查是否成功。
例 2:將數(shù)據(jù)庫(kù) mydb 中的 mytable 導(dǎo)出到 e:MySQLmytable.sql 文件中。
c:> mysqldump -h localhost -u root -p mydb mytable>e:MySQLmytable.sql
例 3:將數(shù)據(jù)庫(kù) mydb 的結(jié)構(gòu)導(dǎo)出到 e:MySQLmydb_stru.sql 文件中。
c:> mysqldump -h localhost -u root -p mydb --add-drop-table >e:MySQLmydb_stru.sql
備注:-h localhost 可以省略,其一般在虛擬主機(jī)上用。
3)只導(dǎo)出數(shù)據(jù)不導(dǎo)出數(shù)據(jù)結(jié)構(gòu)
格式:
mysqldump -u [數(shù)據(jù)庫(kù)用戶名] -p -t [要備份的數(shù)據(jù)庫(kù)名稱]>[備份文件的保存路徑]
4)導(dǎo)出數(shù)據(jù)庫(kù)中的Events
格式:mysqldump -u [數(shù)據(jù)庫(kù)用戶名] -p -E [數(shù)據(jù)庫(kù)用戶名]>[備份文件的保存路徑]
5)導(dǎo)出數(shù)據(jù)庫(kù)中的存儲(chǔ)過(guò)程和函數(shù)
格式:mysqldump -u [數(shù)據(jù)庫(kù)用戶名] -p -R [數(shù)據(jù)庫(kù)用戶名]>[備份文件的保存路徑]
從外部文件導(dǎo)入數(shù)據(jù)庫(kù)中
1)使用“source”命令
首先進(jìn)入“mysql”命令控制臺(tái),然后創(chuàng)建數(shù)據(jù)庫(kù),然后使用該數(shù)據(jù)庫(kù)。最后執(zhí)行下面操作。
mysql>source [備份文件的保存路徑]
2)使用“<”符號(hào)
首先進(jìn)入“mysql”命令控制臺(tái),然后創(chuàng)建數(shù)據(jù)庫(kù),然后退出 MySQL,進(jìn)入 DOS 界面。最后執(zhí)行下面操作。
mysql -u root –p < [備份文件的保存路徑]
- 上一篇
MySQL形考題型
- 下一篇
MySQL簡(jiǎn)單入門
第1部分:入門學(xué)習(xí)以下內(nèi)容1.了解數(shù)據(jù)庫(kù)的基本概念2.如何安裝數(shù)據(jù)庫(kù)?3.表的創(chuàng)建、刪除和更新4.數(shù)據(jù)的插入、刪除和更新數(shù)據(jù)第2部分:簡(jiǎn)單查詢學(xué)習(xí)以下內(nèi)容:1.基本的查詢語(yǔ)句2.如何指定詢條件?3.注釋和SQL語(yǔ)句注意事項(xiàng)4.學(xué)會(huì)運(yùn)算符指定復(fù)雜的查詢條件5.字符串模糊查詢第3部分:匯總分析學(xué)習(xí)以下內(nèi)容:1.如何進(jìn)行匯總分析?2如何對(duì)數(shù)據(jù)分組?3.如何對(duì)數(shù)據(jù)分組結(jié)果指定條件?