MySql 資料表字段常用查詢記錄

2021-10-03 09:53:04 字數 611 閱讀 2093

#獲取資料表的所有字段資訊

select c.* from information_schema.columns c where table_name = 'baseinfo_vehicle';

#拼接資料表的所有欄位名

select group_concat(concat(" `",c.column_name,"`")) from information_schema.columns c where table_name = 'baseinfo_vehicle';

#獲取資料表的所有不允許為空的字段資訊

select c.* from information_schema.columns c where table_name = 'baseinfo_vehicle' and c.is_nullable="no";

#拼接資料表的所有不允許為空的所有欄位名

select group_concat(concat(" `",c.column_name,"`")) from information_schema.columns c where table_name = 'baseinfo_vehicle' and c.is_nullable="no";

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

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

PHP自動驗證MySql資料表字段

php自動驗證mysql 資料表字段 變數自行替換,this 自行刪除 資料對比 param type param 資料 param type table 表名 return boolean false 需要資料 function data contrast param,table 判斷資料型別 s...

sql資料表字段操作

一 修改字段預設值 alter table 表名 drop constraint 約束名字 說明 刪除表的字段的原有約束 alter table 表名 add constraint 約束名字 default 預設值 for 欄位名稱 說明 新增乙個表的字段的約束並指定預設值 二 修改欄位名 alte...