mysql基本操作

2021-10-05 07:18:57 字數 690 閱讀 8542

開啟cmd,跳轉到根目錄bin目錄,使用命令開啟mysql -uroot -p

1:show databases;

檢視所有的資料庫,等同於select schema_name from information_schema.schemata\g。\g 替換;,以縱向報表的形式輸出結果,有利於閱讀。

2. status 檢視mysql資料庫的執行狀態

3. use 命令選擇資料庫 例如 use information_schema,當使用此命令後

select schema_name from information_schema.schemata\g,可以為

select schema_name from schemata\g

4. 檢視資料庫中的表

show tables

同樣也可以在information_schema中檢視,show命令是方便使用的簡短模式。

select table_name from tables where table_schema=『jblog』;

5. 檢視表結構

desc table_name;

6.檢視表狀態 show table status from db like 條件

可以檢視engine資料庫引擎,version,row、index等資訊

7.小技巧,當多行命令輸入,發現錯誤後,用\c結束。

mysql基本操作 MySQL基本操作

mysql中新增使用者,新建資料庫,使用者授權,刪除使用者,修改密碼 注意每行後邊都跟個 表示乙個命令語句結束 1.新建使用者 1.1 登入mysql mysql u root p 密碼 1.2 建立使用者 mysql insert into mysql.user host,user,passwor...

mysql 基本操作 mysql基本操作

mysql 建立表,並設定主鍵自增 create table log logid int 4 primary key not null auto increment,logtitle varchar 32 not null logcontent varchar 160 not null logtim...

mysql基本操作

1,檢視資料庫狀態 及啟動停止 etc init.d mysqld status etc init.d mysqld start etc init.d mysqld stop 2,給使用者配置初始密碼123456 mysqladmin u root password 123456 3,修改root使...