数据库中表格管理

1、创建表 create table xxx (id int primary key not null auto_increment,name varchar(20)); 红色为字段属性 2、查看表格属性 dessc 表名; 3、查看表格内容 select * from 表名; 4、查看创建的表格语法格式 show create table 表名; 5、删除表 drop table  表名 6、为
相关文章
相关标签/搜索