mysql: select: select * from information_schema.Columns where table_name='表名' #查詢表的各個(gè)屬性 select column_comment,column_name,data_type,is_nullable,column_type,numeric_precision,numeric_scale ,column_default from information_schema.Columns where table_name='表名' #查詢表的 字段名字,字段注釋 , 數(shù)據(jù)類型 ,是否可以為空 ,字段類型,數(shù)值精度,小數(shù)點(diǎn)數(shù), 列morenzhi select * from information_schema.tables 查詢表信息 select table_name,table_comment from information_schema.tables 查詢表 表名 ,表注釋 select table_name,table_comment from information_schema.tables where table_name like '%表名%' 模糊匹配相應(yīng)的表 SELECT count(*) TABLES, table_schema FROM information_schema.TABLES where table_schema = '表名' GROUP BY table_schema; 查詢數(shù)據(jù)庫表總數(shù)量 edite: alter table 表明 add 字段名 decimal(18,2) 給表增加一個(gè)字段 刪除表的一個(gè)字段 alter table 表名 modify 字段名 decimal(18,2) 修改表的一個(gè)字段 |
|