mysql常用命令總結

2021-06-29 02:01:02 字數 776 閱讀 3243

1)mysql檢視當前登陸使用者(有些時候你有必要來在此確定你目前登陸的賬號資訊):

mysql> select current_user();

+—————-+

| current_user() |

+—————-+

| root@localhost |

+—————-+

1 row in set (0.00 sec)

2)檢視某個使用者的許可權(許可權管理是mysql資料庫管理中很重要的一部分,安全是第一位的,在dba的眼裡,最起碼在我看來,資料的安全勝於一切):

mysql> show grants for 『root』@』localhost』;

+———————————————————————————————————————-+

| grants for root@localhost |

+———————————————————————————————————————-+

| grant all privileges on . to 『root』@』localhost』 identified by password 『*44771e97d42bbe1cf2d50656895efea9cb5c4a8e』 |

| grant proxy on 」@」 to 『root』@』localhost』 with grant option |

+———————————————————————————————————————-+

2 rows in set (0.00 sec)

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

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

mysql常用命令總結 Mysql 常用命令總結

mysql資料庫中的sql用法 檢視專案連線的mysql庫中的所有資料庫資訊 show databases 產看當前專案連線的資料庫資訊 select database 展示當前連線的資料庫的所有資料表資訊 show tables 查詢mysql的所有使用者資訊 select distinct co...

MySql常用命令總結

1 使用show語句找出在伺服器上當前存在什麼資料庫 mysql show databases 2 2 建立乙個資料庫mysqldata mysql create database mysqldata 3 選擇你所建立的資料庫 mysql use mysqldata 按回車鍵出現database c...