原有person表,字段age,name使变成字段id,age,name 在最左边插入新的字段的命令是什么
alter table TABLE_NAME add column id int not null first
在任何一个位置插入呢。比如在最右边或者中间