摘要: 1.修改表名字 alter table 表原来的名字 rename to 表新的名字 2.查询表结构 desc 表名字 3.添加列 alter table 表名字 add columns (列名字,列字段类型) 4.更新列 alter table 表名字 change column 列原来的名字 列 阅读全文
posted @ 2020-08-25 18:05 Protect_Winter 阅读(2715) 评论(0) 推荐(0)