1创建表 create table 表名(字段名 类型 约束,字段名 类型 约束...) 例:创建学生表,字段要求如下: 姓名(长度为10), 年龄 create table students(name varchar(10),age int unsigned) 2删除表 格式一:drop table 表名 格式二:drop table if exists 表名 例:删除学生表 drop table students或drop table if exists students 3简单查询 select * from 表名 例:查询所有学生数据 select * from students 4添加数据 例:插入一个学生,设置所有字段的信息 insert into students values(0,'亚瑟',22,177.56) 5修改 例:修改id为5的学生数据,姓名改为 狄仁杰,年龄改为 20 update students set name='狄仁杰',age=20 where id=5 |