Mysql 给表添加字段的三种方式
alter table `student` add `address` int-- 在末尾添加字段alter table `student` add `address` int first-- 在开头添加字段alter table `student` add `address` int after `name`-- 在指定字段之后添加字段
·
alter table `student` add `address` int -- 在末尾添加字段
alter table `student` add `address` int first -- 在开头添加字段
alter table `student` add `address` int after `name` -- 在指定字段之后添加字段
更多推荐
所有评论(0)