核心内容摘要
【课程设计/毕业设计】基于springboot的医院教学临床培训系统与管理平台【附源码、数据库、万字文档】
sql语言对字段进行增加用到alter语句语法是alter table 表名 add column 新字段名 类型alter table table_tom add column color int删除字段语法是alter table 表名 drop column 要删除的字段alter table table_tom drop column color重命名字段语法alter table 表名 rename 旧的字段名 to 新的字段名alter table table_tom rename content to name