啟動mysql服務
net start mysql
登入(已經設定過)
mysql -u root -p123456
修改使用者密碼
update mysql.
user
set authentication_string=password(
'123456'
)where
user
='root'
and host=
'localhost'
;
重新整理許可權
flush privileges
;
tips01:進入mysql後,所有的語句都使用分號結尾
tips02:mysql對大小寫不敏感
tips03:以下命令內的內容為可選
tips04:如果表名或欄位名是特殊字段,需要帶``,如:`user`
查詢所有資料庫
show
databases
;
建立資料庫
create
database[if
notexists
] teacher;
刪除資料庫
drop
database[if
exists
] teacher;
切換資料庫
use school;
--use 資料庫名
檢視資料庫中所有的表
show
tables
;
顯示資料庫中表的資訊
describe student;
--describe 表名
退出連線
exit
;--退出連線
注釋
-- 單行注釋
/*多行注釋
*/
mysql 命令列 回車 mysql命令列操作
顯示資料庫 show databases 當前資料庫 select database 顯示表show tables 更改表名稱 alter table 原表名 rename 新錶名 rename table 原表名 to 新錶名 檢視系統支援的引擎 show engines 檢視表的引擎 show ...
命令列操作mysql
一 從命令列登入mysql資料庫伺服器 1 登入使用預設3306埠的mysql usr local webserver mysql bin mysql u root p 2 通過tcp連線管理不同埠的多個mysql 注 mysql4.1以上版本才有此項功能 usr local webserver m...
MySQL命令列操作
一 連線mysql。格式 mysql h主機位址 u使用者名稱 p使用者密碼 1 例1 連線到本機上的mysql。首先在開啟dos視窗,然後進入目錄 mysqlbin,再鍵入命令mysql uroot p,回車後提示你輸密碼,如果剛安裝好mysql,超級使用者root是沒有密碼的,故直接回車即可進入...