mysql資料庫中的自有資料庫 information_schema 包含了所有資料庫的資料,其中 columns 表包含了資料庫中所有表的所有欄位的資訊,一下是乙個查詢database資料庫中table1表的資料sql
select column_name 列名, data_type 字段型別 ,character_maximum_length 長度,is_nullable 是否可以為空,column_default 預設值, column_key,column_comment 字段注釋
from information_schema.columns
where table_name = 'table1'##表名
and table_schema = 'database1'##資料庫名
關於 information_schema 資料庫具體的資料,可以參考 sql 查詢資料庫表結構
1 查詢非系統資料庫 2select name from master.sysdatabases where dbid 43 4 選擇water資料庫下的所有表 5use water select name from sysobjects where xtype u or xtype s 67 選擇...
查詢MySQL資料庫中表結構
什麼是表結構?表結構就是定義資料表檔名,確定資料表包含哪些字段,各字段的欄位名 字段型別 及寬度,並將這些資料輸入到計算機當中。查詢方法 以表 employees 為例子 1.describe desc 表名 desc 是 describe的縮寫 describe用於檢視特定表的詳細設計資訊 des...
mysql資料庫操作 SQL查詢語言
sql structured query language ddl create drop alter dml insert delete udpate dql select dcl grant revoke 刪除和建立資料庫 drop database if exists company crea...