查詢資料庫所有用戶
select * from tableName;
tableName是資料庫中注冊用戶表。
查詢具體的欄位:
SELECT column_name,column_name FROM tableName;
例子:
獲取名為 "LastName" 和 "FirstName" 的列的內容(從名為 "Persons" 的資料庫表):
SELECT LastName,FirstName FROM Persons;
(1)查詢資料庫所有用戶擴展閱讀:
獲取資料庫所有表的欄位及其欄位
select table_name,column_name,column_comment,column_type,column_key from information_schema.Columns
where table_schema='資料庫'
獲取資料庫某個表的欄位及其欄位
select table_name,column_name,column_comment,column_type,column_key from information_schema.Columns
where table_name='表名' and table_schema='資料庫'
Ⅱ 如何查看mysql資料庫的用戶
1,打開mysql.exe和mysqld.exe所在的文件夾,復制路徑地址;
2,打開cmd命令提示符,進入上一步mysql.exe所在的文件夾;
3,輸入命令
mysqld
--skip-grant-tables
回車,此時就跳過了mysql的用戶驗證。注意輸入此命令之後命令行就無法操作了,此時可以再打開一個新的命令行。
注意:在輸入此命令之前先在任務管理器中結束mysqld.exe進程,確保mysql伺服器端已結束運行;
4,然後直接輸入mysql,不需要帶任何登錄參數直接回車就可以登陸上資料庫;
5,輸入show
databases;
可以看到所有資料庫說明成功登陸;
6,其中mysql庫就是保存用戶名的地方。輸入
use
mysql;
選擇mysql資料庫;
7,show
tables查看所有表,會發現有個user表,這里存放的就是用戶名,密碼,許可權等等賬戶信息;
8,輸入select
user,host,password
from
user;
來查看賬戶信息;
9,更改root密碼,輸入update
user
set
password=password('123456')
where
user='root'
and
host='localhost';
10,再次查看賬戶信息,select
user,host,password
from
user;
可以看到密碼已被修改。
第七步的圖解