查詢MySQL資料表的欄位名和表結構

2022-05-07 14:15:10 字數 715 閱讀 1107

查詢表的字段:

--

查詢表的欄位名

select

column_name

--group_concat('a.', column_name separator ',') as column_name -- 加表別名並用逗號連線

from

information_schema.columns

where

table_schema ='

hera'--

資料庫名

and table_name =

'tbn_car'--

表名;

查詢表結構:

--

查詢表結構

select

table_name as'

表名', column_name as'

欄位名'

, column_type as'

型別', column_key as'

主鍵', column_comment as'

說明'from

information_schema.columns

where

table_schema ='

hera'--

資料庫名

and table_name =

'tbn_car'--

表名;

mysql 檢視資料表結構,查詢資料表欄位名

describe命令 一 describe命令用於檢視特定表的詳細設計資訊,例如為了檢視guestbook表的設計資訊,可用 describe guestbook describe ol user userid 二 可通過 show comnus 來檢視資料庫中表的列名,有兩種使用方式 show c...

查詢表的欄位名

select name from syscolumns where id in select id from sysobjects where type u and name 相應表名 用以上sql語句輸入相應表名就可以查到表的欄位名,對應好資料庫 查詢是否存在該錶語句 if exists sele...

MySQL修改資料表中的欄位名

在一張資料表中只能設定乙個唯一名稱的欄位名。在同一張資料表中,不能出現兩個名稱完全相同的欄位名。因此,資料庫系統可以通過欄位名來區分資料表中的不同字段。在mysql中,alter table語句也可以修改資料表的欄位名。基本語法格式如下 alter table 表名 change 舊欄位名 新欄位名...