css属性编写顺序+mysql基本操作+html细节(个人笔记) – Amazing

css属性编写顺序+mysql基本操作+html细节(个人笔记) - Amazing

//增加一个新列

alter table t2 add d timestamp;
alter table infos add ex tinyint not null default ‘0′;

//删除列

alter table t2 drop column c;

//重命名列

alter table t1 change a b integer;

//改变列的类型

alter table t1 change b b bigint not null;
alter table infos change list list tinyint not null default ‘0’;

//重命名表

   alter table t1 rename t2;

css属性编写顺序+mysql基本操作+html细节(个人笔记) – Amazing

相关文章:

你感兴趣的文章:

标签云: