MySQL的5种子句查询_MySQL
程序员文章站
2022-05-16 19:28:05
...
MySQL的5种子句查询
1.where
where shop_price>300 and shop_price500
- between
where shop_price between 300 and 500
where shop_price >= 300 and shop_price
- in
where cat_id in(4,5,6)cat_id=4 cat_id=5 cat_id=6
2.group by 分组查询
group by 需要配合一下5个聚合函数使用:
- max
- min
- avg
- sum
- count
select cat_id.max(shop_price) from goods group by cat_id;
3.having
having必须作用于where之后
select cat_id,sum(shop_price*goods_number) as huokuan from goods group by cat_id having huokuan>20000;
4.order by
- asc---顺序,默认值
- desc---倒序
5.limit
limit[偏移量],条数
偏移量默认为0
上一篇: mongodb的写入,删除,更新
下一篇: vue单个组件实现无限层级多选菜单功能
推荐阅读
-
mysql数据库和数据表的简单操作
-
MySQL asc、desc数据排序的实现
-
MySQL的时间差函数TIMESTAMPDIFF、DATEDIFF的用法
-
解决Navicat远程连接MySQL出现 10060 unknow error的方法
-
解决MySQL安装到最后一步未响应的三种方法
-
MySQL4 File ‘c:\mysql\share\charsets\?.conf’ not found (Errcode: 22)的解决方法
-
mysql数据库中1045错误的解决方法
-
MySQL 5.7及8.0版本数据库的root密码遗忘的解决方法
-
mysql视图之创建可更新视图的方法详解
-
MySQL插入时间差八小时问题的解决方法