連線資料庫mysql -uroot -p123456
update mysql.user set authentication_string=password('123456') where user='root' and host = 'localhost'
------修改使用者資訊
flush privileges;
–----- 重新整理許可權
show databases;
–----- 檢視所有的資料庫
所有的語句分號結尾,否則不生效;退出當前語句ctrl+cuse school;
–----- 切換資料庫
show tables;
–----- 檢視資料庫中所有的表
describe student;
–----- 顯示資料庫中所有的表的詳細資訊
create database yangyangyang;
------建立資料庫表
exit;
------退出命令列
用命令列連線MySQL資料庫
操作前提 確保已經成功安裝mysql資料庫 1.win r開啟命令列 2.在命令列中輸入mysql u使用者名稱 p 回車輸入密碼,或者輸入mysql u使用者名稱 p密碼 3.可能出現的異常 3.1 mysql不是內部或外部命令,原因 沒有配置環境變數,解決方法 1.在環境變數中新增mysql環境...
命令列如何遠端連線MySQL資料庫
新使用mysql,說起來是個簡單的事情,但是卻費了些周折 1 登陸伺服器端,進入命令列,windows cmd 2 設定使用者 密碼讓指定的ip訪問 mysql u root p 或安裝的快捷方式進入 mysql command line client,使用grant命令 grant 許可權1,許可...
命令列如何遠端連線MySQL資料庫
新使用mysql,說起來是個簡單的事情,但是卻費了些周折 1 登陸伺服器端,進入命令列,windows cmd 2 設定使用者 密碼讓指定的ip訪問 mysql u root p 或安裝的快捷方式進入 mysql command line client,使用grant命令 grant 許可權1,許可...