SQL基本操作/笔记(一)

1、删除表newpydata:drop table newpydata;   2、查看创建的表字段类型:show create table newtest;   3、向表中添加列项目:alter table newtest add userName char(8); 一次添加多个列项目:alter table newtest add (platFrom char(5),sign char(10))
相关文章
相关标签/搜索