核心内容摘要
Oracle 19C安装避坑指南:从镜像解压到配置只读Home的完整流程
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