MYSQL向某錶新增字段

2021-10-14 04:08:09 字數 364 閱讀 4892

使用alter table命令來向乙個表新增字段,示例如下:

-- 向t_user表新增user_age欄位

alter table t_user add column user_age int(11

) default null comment '年齡' after user_email;

命令解釋:

t_user:表名

user_age:新增的欄位名稱

int(11):字段型別和長度

default null:預設為null

『年齡』:字段含義

after user_email:在user_email欄位之後新增user_age欄位

mysql獲取某錶所有字段,並且新增字段字首

一句sql可以直接獲取目標表的字段資訊,不用在model內乙個乙個寫出來。select group concat column name separator bwpd.from information schema.columns where table name adi business weig...

Mysql 給表新增字段

第一步 drop table if exists city create table city id int 11 not null auto increment,name char 35 not null default countrycode char 3 not null default di...

mysql 新增字段 MySql新增字段命令

mysql 新增字段 alter table t user add column user age int 11 default null comment 年齡 after user email mysql 修改字段 alter table user10 modify email varchar 2...