mysql中用命令列在表中指定位置新增字段:
有以下表結構:
create table `table_name` (
`id` int(11) not null auto_increment,
`user_name` varchar(50) not null,
`time` datetime not null,
`op_contents` varchar(255) not null,
`log_type` tinyint(2) not null,
primary key (`id`),
key `log_type` (`log_type`)
) engine=myisam default charset=gbk
要想在id和user_name之間新增乙個欄位user_id使用如下命令:
alter table table_name add column user_id int(11) not null comment'使用者id' after id;
修改字段命令
alter table table_name change old_field_name new_field_name field_type;
Mysql修改字段
新增乙個字段,預設值為0,非空,自動增長,主鍵 alter table tabelname add new field name field type default 0 not null auto increment add primary key new field name 增加乙個新字段 a...
MySQL 字段修改
有時候需要對資料庫的某些字段進行修改,例如字段型別 名稱 備註等等,除了直接的表設計,可以編寫 sql 命令進行修改。alter table user modify column create time varchar 11 default 0 comment 建立時間 上面的 sql 命令代表修改...
MySQL新增字段,修改字段,刪除字段,修改表資訊
mysql的簡單語法,常用,卻不容易記住。當然,這些sql語法在各資料庫中基本通用。下面列出 一 查詢資訊 1.登入資料庫 mysql u root p 資料庫名稱 2.查詢所有資料表 show tables 3.查詢表的字段資訊 desc 表名稱 二 修改表資訊 1.修改表名 2.修改表注釋 三 ...