摘要: 一、操作表的SQL语句补充 '1.修改表名' alter table 旧表名 rename 新表名; alter table t1 rename t2; ' 2.新增字段' alter table t1 add 字段名 字段类型(数字) 约束条件; alter table t1 add name v 阅读全文
posted @ 2022-08-17 17:38 stephen_hao 阅读(1234) 评论(0) 推荐(0) 编辑