mySql常用命令

2022-05-31 18:09:09 字數 823 閱讀 5534

1.連線資料庫

mysql -u使用者名稱 -p密碼

2.顯示所有資料庫

show databases;

3.使用資料庫

use 資料庫名;

4.顯示某個資料庫下的所有表

show tables;

5.顯示表結構

desc表明;

6.停止資料庫服務

net stop mysql;

7.開啟資料庫服務

net start mysql;

8.建立資料庫

create database 資料庫名;

9.建立使用者(注意:必須有建立使用者許可權的管理員)

create user '使用者名稱'@'ip位址' identified by '密碼';

eg:create user 'test'@'%' identified by 'test';

10.授權

grant 操作 on 資料庫.表名 to '使用者名稱'@'ip位址';

(注意:操作包括select,insert,update,delete,等,也可以使用all 關鍵字授權所有操作)

eg:grant all on mydb.* to 'test'@'%';

11.**許可權

revoke 操作 on 資料庫.表名 from '使用者名稱'@'ip位址';

eg:revoke all on mydb.* from 'test'@'%';

12.刪除使用者

drop user '使用者名稱'@'ip位址'

(注意:刪除使用者前先**使用者許可權)

eg:drop user 'test'@'%';

mysql基本常用命令 MySQL常用命令(一)

cmd提示框中的mysql基礎命令 一 命令 連線mysql伺服器 mysql h localhost u root p 展示所有資料庫 show databases 選擇資料庫 use database 展示所選資料下所有表 show tables 設定資料庫編碼 set names gbk 用s...

mysql巡檢常用命令 mysql 常用命令

客戶端連線 進入命令列,windows cmd,連線 mysql u 使用者名稱 p密碼 h 伺服器ip位址 p 伺服器端mysql埠號 d 資料庫名 注意 1 伺服器端口標誌 p一定要大些以區別於使用者 p,如果直接連線資料庫標誌 d也要大寫 2 如果要直接輸入密碼 p後面不能留有空格如 pmyp...

mysql常用命令總結 mySql常用命令總結

總結一下自己常用的mysql資料庫的常用命令 mysql u root p 進入mysql bin目錄後執行,回車後輸入密碼連線。資料庫操作 1 create database dbname 建立資料庫,資料庫名為dbname 2 create database todo default chara...