久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

mysql 實(shí)用操作表屬性 數(shù)據(jù)庫(kù)屬性 等

 涅槃沉殤 2018-01-05

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ù)庫(kù)表總數(shù)量


edite:

alter table 表明  add  字段名   decimal(18,2)

給表增加一個(gè)字段
alter table 表明  drop column 字段名

刪除表的一個(gè)字段

alter table 表名 modify  字段名 decimal(18,2) 

修改表的一個(gè)字段

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點(diǎn),。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買等信息,,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào),。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多