mysql--通過cmd連線mysql,並建立資料庫

ZeroWM發表於2016-08-14


mySQL命令:-P:埠號      -h:主機名或IP地址     -u:使用者名稱    -p:密碼


或者,直接開啟MySQL 5.7 Command Line Client(MySQL的DOS介面),在頁面建立快捷方式,即可執行命令操作。



輸入:      Create database hibernate_first;

即可建立資料庫名為hibernate_first的庫。

繼續輸入 :     use  hibernate_first;

意思是,使用hibernate_first資料庫。




上圖說明MySQL   hibernate_first資料庫已經建立成功,可以使用。



desc user;

獲取表結構


show create table user;

列印SQL語句

相關文章