選擇資料庫,執行以下sql:
select
c.table_name '表名',
t.table_comment 表說明,
c.column_name '列名',
c.column_comment '描述',
c.column_type '資料型別',
c.character_maximum_length '最大長度',
c.is_nullable '必填',
c.column_default '預設值'
from
information_schema.columns c join information_schema.tables t on c.table_name = t.table_name
where
c.table_schema = 'base_dev' #表所在資料庫
-- t.and table_name = 'man' ; #你要查的表
匯出結果,輸出為所需文字即可:
輸出mysql資料庫結構表
這是乙個很給力的php頁面,可以自動輸出mysql資料庫所有表結構,大大方便了文件的編寫工作,也同時非常方便編碼的時候進行查詢。當然在設計mysql資料庫表和字段的時候詳細填寫表和字段的備註,這是非常好的習慣,對這個網頁的輸出也是最佳效果的。public w3c dtd xhtml 1.0 tran...
資料庫結構文件
實在是失誤,er studio 提供了匯出資料庫結構文件的功能,到今天才發現,使用簡述如下。文件的型別在 er studio5.5.2 中有word 和html 兩種格式,其中的 word 格式可以定製文件的格式和內容,而 html 格式隨沒有提供定製功能,但其提供的框架結構對我們查詢資料庫結構是非...
mysql資料庫表結構匯出
mysql 資料庫表結構匯出 命令列下具體用法如下 mysqldump u使用者名稱 p密碼 d 資料庫名 表名 指令碼名 匯出整個資料庫結構和資料 mysqldump h localhost uroot p123456 database dump.sql 匯出單個資料表結構和資料 mysqldum...