mysql查询练习
mysql> #查询每个栏目最贵的商品
mysql> select goods_id,shop_price,cat_id from (select goods_id,shop_price,cat_id
from goods order by shop_price desc) as temp group by cat_id;
+----------+------------+--------+
| goods_id | shop_price | cat_id |
+----------+------------+--------+
| 16 | 823.33 | 2 |
| 22 | 5999.00 | 3 |
| 18 | 2878.00 | 4 |
| 23 | 3700.00 | 5 |
| 7 | 100.00 | 8 |
| 6 | 42.00 | 11 |
| 25 | 48.00 | 13 |
| 29 | 90.00 | 14 |
| 27 | 95.00 | 15 |
+----------+------------+--------+
9 rows in set (0.02 sec) mysql> #查询出每个栏目最低的商品
mysql> select goods_id,shop_price,cat_id from(select goods_id,shop_price,cat_id
from goods order by shop_price asc) as temp group by cat_id;
+----------+------------+--------+
| goods_id | shop_price | cat_id |
+----------+------------+--------+
| 16 | 823.33 | 2 |
| 20 | 280.00 | 3 |
| 1 | 1388.00 | 4 |
| 23 | 3700.00 | 5 |
| 4 | 58.00 | 8 |
| 5 | 20.00 | 11 |
| 26 | 19.00 | 13 |
| 30 | 18.00 | 14 |
| 28 | 45.00 | 15 |
+----------+------------+--------+
9 rows in set (0.00 sec) mysql> #查询出每个栏目的平均价格
mysql> select goods_id,cat_id,shop_price from goods where cat_id=2;
+----------+--------+------------+
| goods_id | cat_id | shop_price |
+----------+--------+------------+
| 16 | 2 | 823.33 |
+----------+--------+------------+
1 row in set (0.00 sec) mysql> select goods_id,cat_id,shop_price from goods where cat_id=3;
+----------+--------+------------+
| goods_id | cat_id | shop_price |
+----------+--------+------------+
| 8 | 3 | 399.00 |
| 9 | 3 | 2298.00 |
| 10 | 3 | 1328.00 |
| 11 | 3 | 1300.00 |
| 12 | 3 | 983.00 |
| 13 | 3 | 1311.00 |
| 15 | 3 | 788.00 |
| 17 | 3 | 2300.00 |
| 19 | 3 | 858.00 |
| 20 | 3 | 280.00 |
| 21 | 3 | 2000.00 |
| 22 | 3 | 5999.00 |
| 24 | 3 | 2000.00 |
| 31 | 3 | 1337.00 |
| 32 | 3 | 3010.00 |
+----------+--------+------------+
15 rows in set (0.00 sec) mysql> select cat_id,avg(shop_price) from goods where cat_id=3;
+--------+-----------------+
| cat_id | avg(shop_price) |
+--------+-----------------+
| 3 | 1746.066667 |
+--------+-----------------+
1 row in set (0.00 sec) mysql> select cat_id from goods group by cat_id;
+--------+
| cat_id |
+--------+
| 2 |
| 3 |
| 4 |
| 5 |
| 8 |
| 11 |
| 13 |
| 14 |
| 15 |
+--------+
9 rows in set (0.00 sec) mysql> select cat_id,avg(shop_price) from goods where cat_id in (
-> select cat_id from goods group by cat_id);
+--------+-----------------+
| cat_id | avg(shop_price) |
+--------+-----------------+
| 4 | 1232.526774 |
+--------+-----------------+
1 row in set (0.03 sec) mysql> select cat_id,sum(goods_number) from goods where cat_id=4;
+--------+-------------------+
| cat_id | sum(goods_number) |
+--------+-------------------+
| 4 | 3 |
+--------+-------------------+
1 row in set (0.00 sec) mysql> select cat_id,sum(goods_number) from goods group by cat_id;
+--------+-------------------+
| cat_id | sum(goods_number) |
+--------+-------------------+
| 2 | 0 |
| 3 | 203 |
| 4 | 3 |
| 5 | 8 |
| 8 | 61 |
| 11 | 23 |
| 13 | 4 |
| 14 | 9 |
| 15 | 2 |
+--------+-------------------+
9 rows in set (0.00 sec) mysql> #取出每个栏目下的商品的平均价格
mysql> select cat_id,avg(shop_price) as '平均价' from goods group by cat_id;
+--------+-------------+
| cat_id | 平均价 |
+--------+-------------+
| 2 | 823.330000 |
| 3 | 1746.066667 |
| 4 | 2297.000000 |
| 5 | 3700.000000 |
| 8 | 75.333333 |
| 11 | 31.000000 |
| 13 | 33.500000 |
| 14 | 54.000000 |
| 15 | 70.000000 |
+--------+-------------+
9 rows in set (0.03 sec) mysql> #取出每个栏目下的库存量
mysql> select cat_id,goods_number from goods group by cat_id;
+--------+--------------+
| cat_id | goods_number |
+--------+--------------+
| 2 | 0 |
| 3 | 1 |
| 4 | 1 |
| 5 | 8 |
| 8 | 17 |
| 11 | 8 |
| 13 | 2 |
| 14 | 0 |
| 15 | 2 |
+--------+--------------+
9 rows in set (0.00 sec) mysql> #查询每个栏目下商品的种类
mysql> select cat_id,count(*) as '商品种类' from goods cat_id;
+--------+----------+
| cat_id | 商品种类 |
+--------+----------+
| 4 | 31 |
+--------+----------+
1 row in set (0.00 sec) mysql> select cat_id,count(*) as '商品种类' from goods group by cat_id;
+--------+----------+
| cat_id | 商品种类 |
+--------+----------+
| 2 | 1 |
| 3 | 15 |
| 4 | 3 |
| 5 | 1 |
| 8 | 3 |
| 11 | 2 |
| 13 | 2 |
| 14 | 2 |
| 15 | 2 |
+--------+----------+
9 rows in set (0.02 sec) mysql> #having和group综合使用查询
mysql> #查询该店的商品比市场价所省的价格 mysql> select goods_id,shop_price,market_price-shop_price as '比市场省的钱' from
goods;
+----------+------------+--------------+
| goods_id | shop_price | 比市场省的钱 |
+----------+------------+--------------+
| 1 | 1388.00 | 277.60 |
| 4 | 58.00 | 11.60 |
| 3 | 68.00 | 13.60 |
| 5 | 20.00 | 4.00 |
| 6 | 42.00 | 8.40 |
| 7 | 100.00 | 20.00 |
| 8 | 399.00 | 79.79 |
| 9 | 2298.00 | 459.60 |
| 10 | 1328.00 | 265.60 |
| 11 | 1300.00 | -1300.00 |
| 12 | 983.00 | 196.60 |
| 13 | 1311.00 | 262.20 |
| 14 | 2625.00 | 525.00 |
| 15 | 788.00 | 157.60 |
| 16 | 823.33 | 164.67 |
| 17 | 2300.00 | 460.00 |
| 18 | 2878.00 | 575.60 |
| 19 | 858.00 | 171.60 |
| 20 | 280.00 | 56.00 |
| 21 | 2000.00 | 400.00 |
| 22 | 5999.00 | 1199.80 |
| 23 | 3700.00 | 740.00 |
| 24 | 2000.00 | 400.00 |
| 25 | 48.00 | 9.59 |
| 26 | 19.00 | 3.80 |
| 27 | 95.00 | 5.00 |
| 28 | 45.00 | 5.00 |
| 29 | 90.00 | -90.00 |
| 30 | 18.00 | 3.00 |
| 31 | 1337.00 | 267.39 |
| 32 | 3010.00 | 602.00 |
+----------+------------+--------------+
31 rows in set (0.05 sec) mysql> #查询每个商品所积压的货款
mysql> select goods_id,goods_number*shop_price as '积压的货款' from goods;
+----------+------------+
| goods_id | 积压的货款 |
+----------+------------+
| 1 | 1388.00 |
| 4 | 986.00 |
| 3 | 1632.00 |
| 5 | 160.00 |
| 6 | 630.00 |
| 7 | 2000.00 |
| 8 | 399.00 |
| 9 | 9192.00 |
| 10 | 9296.00 |
| 11 | 1300.00 |
| 12 | 7864.00 |
| 13 | 10488.00 |
| 14 | 2625.00 |
| 15 | 2364.00 |
| 16 | 0.00 |
| 17 | 2300.00 |
| 18 | 2878.00 |
| 19 | 10296.00 |
| 20 | 3360.00 |
| 21 | 80000.00 |
| 22 | 5999.00 |
| 23 | 29600.00 |
| 24 | 200000.00 |
| 25 | 96.00 |
| 26 | 38.00 |
| 27 | 190.00 |
| 28 | 0.00 |
| 29 | 0.00 |
| 30 | 162.00 |
| 31 | 1337.00 |
| 32 | 12040.00 |
+----------+------------+
31 rows in set (0.01 sec) mysql> #查询积压的总货款
mysql> select sum(shop_price*goods_number) as '积压的总货款' from goods;
+--------------+
| 积压的总货款 |
+--------------+
| 398620.00 |
+--------------+
1 row in set (0.00 sec) mysql> #查询每个栏目积压的货款
mysql> select cat_id,sum(shop_price*goods_number) as '积压的货款' from goods gro
up by cat_id;
+--------+------------+
| cat_id | 积压的货款 |
+--------+------------+
| 2 | 0.00 |
| 3 | 356235.00 |
| 4 | 6891.00 |
| 5 | 29600.00 |
| 8 | 4618.00 |
| 11 | 790.00 |
| 13 | 134.00 |
| 14 | 162.00 |
| 15 | 190.00 |
+--------+------------+
9 rows in set (0.00 sec) mysql> #查询比市场价省钱200元以上的商品及该商品所省的钱
mysql> select goods_id,market_price-shop_price as 'sheng' from goods where marke
t_price-shop_price>200;
+----------+---------+
| goods_id | sheng |
+----------+---------+
| 1 | 277.60 |
| 9 | 459.60 |
| 10 | 265.60 |
| 13 | 262.20 |
| 14 | 525.00 |
| 17 | 460.00 |
| 18 | 575.60 |
| 21 | 400.00 |
| 22 | 1199.80 |
| 23 | 740.00 |
| 24 | 400.00 |
| 31 | 267.39 |
| 32 | 602.00 |
+----------+---------+
13 rows in set (0.12 sec) mysql> select goods_id,market_price-shop_price as 'sheng' from goods having shen
g>200;
+----------+---------+
| goods_id | sheng |
+----------+---------+
| 1 | 277.60 |
| 9 | 459.60 |
| 10 | 265.60 |
| 13 | 262.20 |
| 14 | 525.00 |
| 17 | 460.00 |
| 18 | 575.60 |
| 21 | 400.00 |
| 22 | 1199.80 |
| 23 | 740.00 |
| 24 | 400.00 |
| 31 | 267.39 |
| 32 | 602.00 |
+----------+---------+
13 rows in set (0.00 sec) mysql> #查询货款大于2w的栏目,以及该栏目积压的货款
mysql> select cat_id,sum(goods_number*shop_price) as huokuan from goods group by
cat_id having huokuan>20000;
+--------+-----------+
| cat_id | huokuan |
+--------+-----------+
| 3 | 356235.00 |
| 5 | 29600.00 |
+--------+-----------+
2 rows in set (0.01 sec) mysql>
mysql查询练习的更多相关文章
- mysql查询性能优化
mysql查询过程: 客户端发送查询请求. 服务器检查查询缓存,如果命中缓存,则返回结果,否则,继续执行. 服务器进行sql解析,预处理,再由优化器生成执行计划. Mysql调用存储引擎API执行优化 ...
- Mysql查询——深入学习
1.开篇 之前上一篇的随笔基本上是单表的查询,也是mysql查询的一个基本.接下来我们要看看两个表以上的查询如何得到我们想要的结果. 在学习的过程中我们一起进步,成长.有什么写的不对的还望可以指出. ...
- Mysql 查询练习
Mysql 查询练习 ---创建班级表 create table class( cid int auto_increment primary key, caption ) )engine=innodb ...
- mysql 查询去重 distinct
mysql 查询去重 distinct 待完善内容..
- MySQl查询区分大小写的解决办法
通过查询资料发现需要设置collate(校对) . collate规则: *_bin: 表示的是binary case sensitive collation,也就是说是区分大小写的 *_cs: ca ...
- 【转】mysql查询结果输出到文件
转自:http://www.cnblogs.com/emanlee/p/4233602.html mysql查询结果导出/输出/写入到文件 方法一: 直接执行命令: mysql> select ...
- MySQL查询缓存
MySQL查询缓存 用于保存MySQL查询语句返回的完整结果,被命中时,MySQL会立即返回结果,省去解析.优化和执行等阶段. 如何检查缓存? MySQL保存结果于缓存中: 把SELECT语句本身做h ...
- mysql 查询数据时按照A-Z顺序排序返回结果集
mysql 查询数据时按照A-Z顺序排序返回结果集 $sql = "SELECT * , ELT( INTERVAL( CONV( HEX( left( name, 1 ) ) , 16, ...
- MySQL查询今天/本周/上周/本月/上个月份的数据
MySQL查询的方式很多,下面为您介绍的MySQL查询实现的是查询本周.上周.本月.上个月份的数据,如果您对MySQL查询方面感兴趣的话,不妨一看. 查询当前今天的数据 SELECT name,sub ...
- [转]向facebook学习,通过协程实现mysql查询的异步化
FROM : 通过协程实现mysql查询的异步化 前言 最近学习了赵海平的演讲,了解到facebook的mysql查询可以进行异步化,从而提高性能.由于facebook实现的比较早,他们不得不对php ...
随机推荐
- 【转】我的WIN7分辨率是1920*1080,调低后字体模糊
原文网址:http://tieba.baidu.com/p/778306758 WIN7还有一个“使用XP风格DPI缩放”的选项,如果选中则只放大文字,不选会连对话框和文字全部放大 这么多层楼,只有这 ...
- OpenXml操作Word的一些操作总结. - 天天不在
OpenXml相对于用MS提供的COM组件来生成WORD,有如下优势: 1.相对于MS 的COM组件,因为版本带来的不兼容问题,及各种会生成WORD半途会崩溃的问题. 2.对比填满一张30多页的WOR ...
- BZOJ2005: [Noi2010]能量采集 莫比乌斯反演的另一种方法——nlogn筛
分析:http://www.cnblogs.com/huhuuu/archive/2011/11/25/2263803.html 注:从这个题收获了两点 1,第一象限(x,y)到(0,0)的线段上整点 ...
- flume服务的搭建
搭建前先统一时间,关闭防火墙,使用的jar包版本是1.6.0的 服务配置有两种方式 第一种:具体步骤如下: 1.将jar包传至node1上,解压至根目录 2.更改目录名,使用如下命令:mv apach ...
- shell脚本应用(2)--变量,数值和字符串
变量 定义,赋值: var=value 引用 $var,${var} 特殊变量 $?上条命令状态 $*/$@所有参数列表 $#参数个数 $0执行的命令名称 $1/${10}第1/10个参数 数值运算 ...
- HW5.10
public class Solution { public static void main(String[] args) { int count = 0; for(int i = 1; i < ...
- Nyoj42 一笔画问题 (欧拉道路)
http://acm.nyist.net/JudgeOnline/problem.php?pid=42题目链接 #include <cstdio> #include <cstring ...
- [三]JFreeChart实践二
功能: 1.设置带色彩的柱状图 2.可以设置多组数据的展示 3.可以设置图标的背景色 4.可以设置柱与柱之间的距离 5.可以设置柱子上边是否显示具体的数值
- IOS开发UIImage中stretchableImageWithLeftCapWidth方法的解释
- (UIImage *)stretchableImageWithLeftCapWidth:(NSInteger)leftCapWidth topCapHeight:(NSInteger)topCap ...
- Installing the PHP/MongoDB extension on Mac OSX 10.8
Installing PHP/MongoDB extension is a two steps task on OSX: Install the autoconf tool required for ...