1.给数据表添加一组数据: 2.给数据表添加多组数据: 3.对数据进行删除和修改: 4.用select查询单个或多个数据信息: 5.去除重复值: 6.查询的各种用法: between的用法: 查询排序: limit的用法: 分组: 查询总数: 起别名: select *from 表 where id = 2; select * from 表 GROUP BY CLASS LIMIT 0,2; select * from 表 where age > 30 order by chengji desc…