mysql 修改 新增 刪除 表字段
新增表的字段 alter table 表名 add 欄位名 欄位的型別
例子: alter table table1 add transactor varchar(10) not null;
alter table table1 add id int unsigned not null auto_increment primary key
在mysql資料庫中怎樣在指定的乙個字段後面新增乙個字段:
alter table newexample add address varchar(110) after stu_id;
修改表的字段型別 alter table 表名 modify column 欄位名 字段型別定義;
例子: alter table chatter_users modify column ip varchar(50);
修改表的欄位名 alter table 表名 change 原欄位名 新欄位名 欄位的型別
例子: alter table student change physics physisc char(10) not null
刪除表的字段 alter table 表名 drop column 欄位名
例子: alter table `user_movement_log` drop column gatewayid
調整表的順序: alter tableuser_movement_log
changegatewayid
gatewayid
int not null default 0 after regionid
表的重新命名 alter table 原表名 rename 現表名;
例子: alter table t1 rename t2;
刪除表的資料 delete from 表名 where (條件) id 不是從1開始 ,truncate table 表名 id是從1 開始的
建立表的例子
create table hlh_message (
id int(11) not null auto_increment comment '健康表id',
title varchar(40) not null comment '健康標題',
hlh_url text default null comment '位址',
bewrite varchar(350) not null comment '描述',
content varchar(350) not null comment '內容',
type tinyint(1) not null default '0' comment '健康知識 0 健康諮詢 1',
create_time date default null comment '發布訊息的時間',
primary key (id)
)engine=innodb default charset=utf8 comment='健康表'
Mysql 新增字段 修改字段 刪除字段
alter table 表名 add 欄位名 字段型別 字段長度 default 預設值 comment 注釋 例如 alter table order add code char 6 default null comment 優惠碼 2 修改字段 修改欄位名 字段型別 長度 a 修改欄位名 alt...
Mysql 新增字段 修改字段 刪除字段
alter table 表名 add column 欄位名 字段型別 字段長度 default 預設值 comment 注釋 例如 alter table order add column code char 6 default null comment 優惠碼 2 修改字段 修改欄位名 字段型別 ...
MySQL新增字段,修改字段,刪除字段,修改表資訊
mysql的簡單語法,常用,卻不容易記住。當然,這些sql語法在各資料庫中基本通用。下面列出 一 查詢資訊 1.登入資料庫 mysql u root p 資料庫名稱 2.查詢所有資料表 show tables 3.查詢表的字段資訊 desc 表名稱 二 修改表資訊 1.修改表名 2.修改表注釋 三 ...