MySQL常用命令

2022-03-23 14:22:19 字數 2176 閱讀 5797

注意:mysql5.7 mysql.user的password欄位 要用authentication_string

登入mysql:

mysql

-u root -p

建立使用者:

mysql

>

insert

into mysql.user(host,user,password)

為使用者授權

授權格式:

grant 許可權 on 資料庫.*

to 使用者名稱@登入主機 identified by

"密碼"; 

授權test使用者擁有testdb資料庫的所有許可權(某個資料庫的所有許可權):

mysql

>

grant

allprivileges

on testdb.*

to test@localhost identified by

'123';

格式:grant 許可權 on 資料庫.*

to 使用者名稱@登入主機 identified by

"密碼"; 

如果想指定部分許可權給一使用者,可以這樣來寫:

mysql

>

grant

select,update

on testdb.*

to test@localhost identified by

'123';

授權test使用者擁有所有資料庫的某些許可權:  

mysql

>

grant

select,delete,update,create,drop

on*.*

to test@"%" identified by "123

";   mysql

>flush privileges;//重新整理系統許可權表

注:@"

%" 表示對所有非本地主機授權,不包括localhost。

刪除使用者

mysql

>

delete

from

user

where

user='

test

'and host=

'localhost';

mysql

>flush privileges

;   mysql

>

drop

database testdb; //

刪除使用者的資料庫

刪除賬戶及許可權:

>

drop

user 使用者名稱@'%'

;        

>

drop

user 使用者名稱@ localhost;

修改指定使用者密碼

mysql

>

update mysql.user

set password=password('

新密碼') where

user

="test" and host=

"localhost";

mysql

>flush privileges;

列出所有資料庫

mysql

>show database;

切換資料庫

mysql

>

use'

資料庫名

';

列出所有表

mysql

>show tables;

顯示資料表結構

mysql

>describe 表名;

刪除資料庫和資料表

mysql

>

drop

database

資料庫名;

mysql

>

drop

table 資料表名;

查詢版本號

mysql

> status;

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...