MySQL 常用show命令

2021-10-05 10:57:57 字數 1671 閱讀 4210

命令為show databases;

上圖就是所有資料庫了.

前四個資料庫是預設的資料庫,後面兩個是我之後自己建立的資料庫.

information_schema資料庫是內部資料庫,裡面儲存的是其他資料庫的資訊

mysql資料庫用於儲存一些使用者資訊

performance_schema資料庫主要用於收集資料庫伺服器效能引數

sys資料庫的所有資料都**於performance_schema,但是會比performance_schema資料庫更加簡潔,便於閱覽裡面的內容

use test1是指定名為test1的這個資料庫

上圖就是student表的所有字段資訊.

field為欄位名

type為資料型別

null為是否允許為null

key為鍵資訊,比如上圖的pri表示欄位id為主鍵

default為預設值

extra為其他資訊,可以是auto_increment,表示鍵自增

describe student;
這個命令和上乙個命令效果是一樣的,但是更加便捷了

show

status

;

show

create

database test1;

上圖的database欄位就是資料庫名,create database就是建立資料庫的語句.

具體如下:

show

create

table student;

create table字段值如下:

『create tablestudent(

idint(11) not null,

namevarchar(20) not null,

***int(11) not null,

phonevarchar(20) not null,

addressvarchar(50) not null,

primary key (id)

) engine=innodb default charset=utf8』

show

errors

;

show

warnings

;

mysql 查詢show 4 查詢命令 show

一 查詢資料庫 1.展示系統中當前所有資料庫 show databases 例 sql mysql show databases database information schema mysql performance schema school school 01 shop sys 7 rows...

mysql 隨機產生show命令失敗

1.系統環境 centos release 6.7 percona server 5.6.21 70.0 原始碼編譯安裝 2.故障簡述 mysql會不定期發生執行show 命令失敗的情況。3.故障排查 3.1.檢視錯誤日誌 客戶端返回錯誤資訊 can t create write tofile tm...

mysql 中show 命令用法詳細介紹

以下所有命令都是在進入mysql監控器中執行的 a.show tables或show tables from database name 顯示當前資料庫 中所有表的名稱 b.show databases 顯示mysql中所有資料庫 的名稱 c.show columns from table name...