mysql資料庫匯出表的資料字典

2021-07-16 02:58:52 字數 1107 閱讀 6375

select column_name,column_type,is_nullable,column_comment from information_schema.columns where table_schema ='yck_bts_db'  and table_name = 'da_menu';

第乙個條件是資料庫名,第二個是表名

1,新建表以及新增表和字段的注釋.

create table auth_user(

id int(19) primary key auto_increment 

comment '主鍵',

name varchar(300) comment '姓名',

create_time date comment '建立時間'

)comment 

= '使用者資訊表';

2,修改表/欄位的注釋.

alter table auth_user comment 

= '修改後的表注釋資訊(使用者資訊表)';

alter table auth_user modify column id int comment '主鍵id';

--注意:欄位名和字段型別照寫就行

3,查詢資料庫所有表的詳細資訊(包括表的注釋).

use information_schema;

select * from tables where table_schema='my_db';

--查詢某一張表的

use information_schema;

select * from tables where table_schema='my_db' and table_name= 'auth_user';

4,查詢一張表的詳細資訊(包括字段注釋,欄位名稱,型別等).

use information_schema;

select * from information_schema.columns where table_schema ='my_db' 

and table_name = 'auth_user';

注:還有一種方式:

use my_db;

show full columns from auth_user;

PHP匯出資料庫資料字典指令碼

author change 配置資料庫 dbserver 192.168.1.218 3306 dbusername admin dbpassword 111 database test 其他配置 title 資料字典 mysql conn mysql connect dbserver,dbuser...

mysql 匯出資料字典

select table catalog,table schema as 資料庫名,table name as 表名,column name as 欄位名,ordinal position as 字段位置,column default as 字段預設值,is nullable 是否允許空值,data...

mysql資料庫表結構匯出

mysql 資料庫表結構匯出 命令列下具體用法如下 mysqldump u使用者名稱 p密碼 d 資料庫名 表名 指令碼名 匯出整個資料庫結構和資料 mysqldump h localhost uroot p123456 database dump.sql 匯出單個資料表結構和資料 mysqldum...