04 2023 档案

摘要:在表创建完成后,发现忘了加表备注,可以执行下面的语句进行修改。 ALTER TABLE 表名称 COMMENT '备注xxxxx' ; 阅读全文
posted @ 2023-04-25 14:58 leocat 阅读(125) 评论(0) 推荐(0)
摘要:一、删除单个字段 alter table 表名称 drop 字段; 二、删除多个字段 alter table 表名称 drop 字段1,drop 字段2,drop 字段3; 阅读全文
posted @ 2023-04-25 14:56 leocat 阅读(732) 评论(0) 推荐(0)