mysql命令列操作備忘

2021-08-26 01:50:44 字數 396 閱讀 2231

1、使用mysqld啟動mysql服務。

2、使用mysql -u使用者名稱 -p密碼登入資料庫。

比如:mysql -u root -p tiger

3、使用show databases;來顯示已經安裝的資料庫。

4、使用use 資料庫名稱;來表示將要操作某個資料庫。

比如:use whaty_alumni;表示要操作名稱為whaty_alumni的資料庫。

5、使用 show tables;來顯示當前操作的資料庫下的所有的使用者表名。

6、檢視表結構;

desc tablename;

7、修改表結構;

alter table document change `score` `score` float(32,16) not null;

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是沒有密碼的,故直接回車即可進入...