查询所有:select * from 表名插入:insert into 表名 (字段1,字段2,字段3,...) values (值1,值2,值3,...)删除:delete from 表名 修改:update 表名 set 字段名1=要修改成的值1,字段名2=要修改成的值2