這篇文章將為大家詳細(xì)講解有關(guān)MySQL查看字段屬性值的方法,小編覺得挺實(shí)用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
創(chuàng)新互聯(lián)成都企業(yè)網(wǎng)站建設(shè)服務(wù),提供成都做網(wǎng)站、網(wǎng)站制作網(wǎng)站開發(fā),網(wǎng)站定制,建網(wǎng)站,網(wǎng)站搭建,網(wǎng)站設(shè)計,響應(yīng)式網(wǎng)站建設(shè),網(wǎng)頁設(shè)計師打造企業(yè)風(fēng)格網(wǎng)站,提供周到的售前咨詢和貼心的售后服務(wù)。歡迎咨詢做網(wǎng)站需要多少錢:18982081108
mysql查看字段屬性值的方法:1、查詢數(shù)據(jù)庫中某個庫所有字段的屬性【table_schema= '數(shù)據(jù)庫庫名'】;2、查詢數(shù)據(jù)庫中指定庫指定表所有字段的屬性【table_schema= '數(shù)據(jù)庫庫名' and table_name= 】。
mysql查看字段屬性值的方法:
1、查詢數(shù)據(jù)庫中某個庫所有字段的屬性(指定數(shù)據(jù)庫庫名),若想查詢所有去掉where條件即可
select * from information_schema.columns where table_schema= '數(shù)據(jù)庫庫名'
2、查詢數(shù)據(jù)庫中指定庫指定表所有字段的屬性(指定數(shù)據(jù)庫庫名和表名)
select * from information_schema.columns where table_schema= '數(shù)據(jù)庫庫名' and table_name = '表名'
3、查詢數(shù)據(jù)庫中特定列條件為某個字段名的屬性
select table_schema,table_name,column_name,column_type,column_comment from information_schema.columns where TABLE_SCHEMA='數(shù)據(jù)庫名' and column_name = '字段名';
4、查詢數(shù)據(jù)庫中特定列(如:字段名、字段類型,長度大小、字段注釋等)
select table_schema,table_name,column_name,column_type,column_comment from information_schema.columns where table_schema= '數(shù)據(jù)庫庫名'
table_schema:數(shù)據(jù)庫庫名
table_name:表名
column_name:字段名
column_type:字段屬性(包含字段類型和長度)
column_comment :字段注釋(字段說明)
data_type:字段類型
column_key:字段的主鍵(PRI為主鍵)
is_nullable:字段是否為空
關(guān)于mysql查看字段屬性值的方法就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。