mysql查看字段屬性值的方法:1、查詢資料庫中某個庫所有字段的屬性【table_schema= '資料庫庫名'】;2、查詢資料庫中指定庫指定表所有字段的屬性【 table_schema= '資料庫庫名' and table_name= 】。
mysql查看字段屬性值的方法:
1、查詢資料庫中某個庫所有欄位的屬性(指定資料庫庫名),若想查詢所有去掉where條件即可
select * from information_schema.columns where table_schema= '数据库库名'
2、查詢資料庫中指定庫指定表所有欄位的屬性(指定資料庫庫名和表名)
select * from information_schema.columns where table_schema= '数据库库名' and table_name = '表名'
3、查詢資料庫中特定列條件為某個欄位名稱的屬性
select table_schema,table_name,column_name,column_type,column_comment from information_schema.columns where TABLE_SCHEMA='数据库名' and column_name = '字段名';
4、查詢資料庫中特定欄位(如:欄位名稱、欄位類型,長度大小、欄位註解等)
select table_schema,table_name,column_name,column_type,column_comment from information_schema.columns where table_schema= '数据库库名'
table_schema:資料庫庫名稱
table_name:表名
column_name:欄位名稱
column_type:欄位屬性(包含欄位類型和長度)
#column_comment :欄位註解(欄位說明)
#data_type:欄位類型
column_key:欄位的主鍵(PRI為主鍵)
is_nullable:欄位是否為空
#更多相關免費學習推薦:mysql教學(影片)
以上是mysql怎麼查看字段的屬性值的詳細內容。更多資訊請關注PHP中文網其他相關文章!