Intern Day78

添加新字段:alter table 数据表名(xx.xx写具体) add 新增字段名 数据类型(比如varchar(20));

在DG中查找某一张表:select * from xxx.xxx;

删除表中某一字段:alter table xxx.xxx drop column 字段名;

原文地址:https://www.cnblogs.com/OFSHK/p/14732686.html