mysql 元資料修改 Mysql 元資料操作

2021-10-20 22:16:48 字數 1050 閱讀 4791

記錄幾個mysql元資料操作的語句,以備後用

安裝好mysql之後在例項下缺省會有:mysql information_schema performation_schema

mysql 配置資訊 使用者資訊 慢日誌 server資訊

information_schema 記錄全域性 database、table、column 、檢視、觸發器、事物元資料相關資訊

performation_schema

操作元資料

# 檢視全域性 schema

select * from information_schema.schemata;

# 檢視具體 schema

select * from information_schema.schemata t where t.`schema_name` = 'risk_management'

# 檢視全域性 檢視

select * from information_schema.views;

#檢視具體某個schema下views

select * from information_schema.views t where t.`table_schema` = 'account'

# 檢視當前例項全域性 table

select * from  information_schema.tables;

# 檢視具體 table_schema 表資訊 行數,資料大小,索引大小,自增最大值,表常見時間

select * from information_schema.tables t where t.`table_schema` = 'risk_management'  and  t.`table_name` = 'gps_info';

# 檢視 database 下 table 中列名,列備註,列型別,是否為空,編碼型別,是否主鍵,等資訊

select * from `information_schema`.`columns` t where t.`table_schema`='risk_management' and t.`table_name` = 'gps_info';

mysql 元資料 MySQL 元資料

mysql 元資料 你可能想知道mysql以下三種資訊 查詢結果資訊 select,update 或 delete語句影響的記錄數。資料庫和資料表的資訊 包含了資料庫及資料表的結構資訊。mysql伺服器資訊 包含了資料庫伺服器的當前狀態,版本號等。在mysql的命令提示符中,我們可以很容易的獲取以上...

mysql 元 MySQL 元資料

你可能想知道mysql以下三種資訊 查詢結果資訊 select,update 或 delete語句影響的記錄數。資料庫和資料表的資訊 包含了資料庫及資料表的結構資訊。mysql伺服器資訊 包含了資料庫伺服器的當前狀態,版本號等。在mysql的命令提示符中,我們可以很容易的獲取以上伺服器資訊。但如果使...

mysql元資料同步 MySQL 元資料

mysql 元資料 你可能想知道mysql以下三種資訊 查詢結果資訊 select,update 或 delete語句影響的記錄數。資料庫和資料表的資訊 包含了資料庫及資料表的結構資訊。mysql伺服器資訊 包含了資料庫伺服器的當前狀態,版本號等。在mysql的命令提示符中,我們可以很容易的獲取以上...