MySql檢視資料庫構建 和 表或字段的注釋

2021-09-24 21:35:17 字數 898 閱讀 7344

/* 查詢資料庫 『bubble』構建 */

select table_name,table_type,engine,table_rows,table_collation,version,concat(truncate(data_length/1024,2),'位元組') as data_size,concat(truncate(index_length/1024,2),'位元組') as index_length,data_free,table_comment from information_schema.tables where table_schema = 'bubble' order by table_name desc;

/* 查詢資料庫 『bubble』 所有表注釋 */

select table_name,table_comment from information_schema.tables where table_schema='bubble';

/* 查詢資料庫 『bubble』 下表 『account』 所有字段注釋 */

select column_name,column_comment from information_schema.columns where table_name='account' and table_schema='bubble';

/* 一次性查詢資料庫 "bubble" 下表注釋以及對應表字段注釋 */

select t.table_name,t.table_comment,c.column_name,c.column_type,c.column_comment from information_schema.tables t,information_schema.columns c where c.table_name=t.table_name and t.`table_schema`='bubble';

建立和檢視資料庫

建立和檢視資料庫 一 建立資料庫 建立資料庫的基本語法 create database 資料庫名稱 例 建立乙個名稱為itcast的資料庫,sql語句如下所示 create database itcast 執行結果如圖 二 檢視資料庫 檢視是否建立了名稱為itcast的資料庫 檢視資料庫,sql語句...

mysql 檢視資料庫 表 大小

記錄備忘 1 進去指定schema 資料庫 存放了其他的資料庫的資訊 use information schema 2 查詢所有資料的大小 select concat round sum data length 1024 1024 2 mb as data from tables 3 檢視指定資料庫...

MySQL 建立和檢視資料表

資料表是關係型資料庫中最基本但最重要的操作物件,是資料儲存的基本單位。資料表被定義為列的集合,資料在表中是按照行和列的格式來儲存的。每一行代表一條唯一的記錄,每一列代表記錄中的乙個域。本篇內容介紹的是建立和修改表及其表結構的內容。資料表屬於資料庫,所以在建立表之前要使用use 資料庫名 指定操作是在...