摘要: 表的基本操作 1、创建表: CREATE DATABASE person; 2、修改表名: alter table 表名 rename 新表名; 3、添加列: alter table 表名 add column 列名 varchar(30); 4、删除列: alter table 表名 drop c 阅读全文
posted @ 2020-09-02 22:25 搬砖的老王 阅读(161) 评论(0) 推荐(0) 编辑