核心内容摘要
阿里开源万物识别模型:5分钟快速部署,新手也能玩转图片识别
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