查找某个字段最大值的记录 sql语句

查找某个字段最大值的记录 sql语句

ID:6734043

大小:46.00 KB

页数:6页

时间:2018-01-23

查找某个字段最大值的记录 sql语句_第1页
查找某个字段最大值的记录 sql语句_第2页
查找某个字段最大值的记录 sql语句_第3页
查找某个字段最大值的记录 sql语句_第4页
查找某个字段最大值的记录 sql语句_第5页
资源描述:

《查找某个字段最大值的记录 sql语句》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库

1、查找某个字段最大值的记录SQL语句  selecttable_name.*fromtable_name,(selectmax(price)asprice,pidfromtable_namegroupbypid)astable_name_tempwheretable_name_temp.price=table_name.priceandtable_name_temp.pid=table_name.pid;--SQLcodecreatetablelk1(uidint,pidint,priceint,`time`date)engine=myisam;inser

2、tintolk1values(1,1,100,'2007-07-01'),(1,2,150,'2007-07-02'),(2,1,110,'2007-07-03'),(3,1,120,'2007-07-04'),(4,2,180,'2007-07-04'),(3,2,170,'2007-07-04'),(6,3,130,'2007-07-04');select*fromlk1wherepricein(selectmax(price)fromlk1groupbypid)groupbypid;--结果1:queryresult(3records)uidpid

3、pricetime311202007-07-04421802007-07-04631302007-07-04truncatetablelk1;insertintolk1values(1,1,200,'2007-07-01'),(1,2,200,'2007-07-02'),(2,1,110,'2007-07-03'),(3,1,120,'2007-07-04'),(4,2,180,'2007-07-04'),(3,2,170,'2007-07-04'),(6,3,130,'2007-07-04');select*fromlk1wherepricein(se

4、lectmax(price)fromlk1groupbypid)groupbypid;--结果2:queryresult(3records)uidpidpricetime112002007-07-01122002007-07-02631302007-07-04根据mysql的手册上面找到一个查询,修改了一下发现也可以实现,但是并不理解什么意思,不知道有没有人给解释一下SQLcodeSELECT*FROMlk1l1WHEREprice=(SELECTMAX(l2.price)FROMlk1l2WHEREl1.`pid`=l2.`pid`);--SQLcod

5、ecreatetablelk1(uidint,pidint,priceint,`time`date)engine=myisam;insertintolk1values(1,1,100,'2007-07-01'),(1,2,150,'2007-07-02'),(2,1,110,'2007-07-03'),(3,1,120,'2007-07-04'),(4,2,180,'2007-07-04'),(3,2,170,'2007-07-04'),(6,3,130,'2007-07-04');select*from(select*fromlk1orderbypri

6、cedesc)Tgroupbypid;--结果1:queryresult(3records)uidpidpricetime311202007-07-04421802007-07-04631302007-07-04truncatetablelk1;insertintolk1values(1,1,200,'2007-07-01'),(1,2,200,'2007-07-02'),(2,1,110,'2007-07-03'),(3,1,120,'2007-07-04'),(4,2,180,'2007-07-04'),(3,2,170,'2007-07-04'),

7、(6,3,130,'2007-07-04');select*from(select*fromlk1orderbypricedesc)Tgroupbypid;--结果2:queryresult(3records)uidpidpricetime112002007-07-01122002007-07-02631302007-07-04insertintolk1values(4,3,200,'2007-07-05'),(5,3,210,'2007-07-05');select*from(select*fromlk1orderbypricedesc)Tgroupb

8、ypid;--结果3:queryresult(3records)uidpidpr

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。