Mysql 獲取表資訊 獲取表詳情

2021-10-01 03:24:49 字數 637 閱讀 5467

查詢資料庫表結構

select table_schema as '資料庫名',table_name  as '資料表名',create_time as '建立時間',table_comment as '描述'

from information_schema.tables where table_schema='資料庫名'

查詢表中列資訊

select table_schema as '資料庫名',table_name as '資料庫表',column_name as '列明',

is_nullable as '可為空',data_type as '資料型別',character_set_name as '編碼格式',

column_type as '資料型別詳情',column_key as '主鍵',column_comment as '列描述'

from information_schema.columns where table_schema = '庫名' and table_name = '表名' ;

Oracle中獲取使用者表資訊詳情

1.獲取當前使用者的使用者名稱 select username from user users 2.獲取某個使用者下的所有表名稱 select table name from all tables where owner 使用者名稱 注意大小寫3.獲取當前使用者下某張表的詳細資訊 select t....

Golang 獲取MySQL表元資訊

本文介紹golang如何運算元據庫,並通過獲取mysql表元資訊進行例項演示。golang 通過標準database sql包實現了對關係型資料庫很好的支援,如mysql,ms sql server,oracle 和 postgres,當然nosql也沒有問題,如mongodb redis。使用go...

獲取表描述資訊

create view v table des asselect表名 o.name,表描述 ptb.value 字段序號 c.column id,欄位名 c.name,字段描述 isnull pfd.value n 主鍵 isnull idx.primarykey,0 可空 c.is nullabl...