由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - 请问这个query该怎么实现?
相关主题
[Mysql] how to return NULL count in group by query (转载)问个SQL问题
请教一个queryMS ACCESS 里面怎么把两个Table combine 到一个table, 而且primary key不重复呢?
如何完成这个sql?How to write the query
ask for help with a simple query!!!SQL中怎样用定制列排序?
请问这两个SQL QUERY有什么错?help about SQL for ACCESS
SQL server 2000有hidden records吗?看了上面,我也来说说俺当年没答出的面试题。
a sql question新学mysql,请教一个时间估计
more HELP: how to make this sql more efficient?厚脸皮的来请教一道很初级的题..
相关话题的讨论汇总
话题: paper话题: query话题: pen话题: num话题: product
进入Database版参与讨论
1 (共1页)
r****r
发帖数: 1693
1
想了好久,没有解决,请帮忙看一下,多谢!
name product total_num
A paper 3
A pen 2
A paper 3
A water 2
A water 2
A paper 3
A pen 2
变量total_num表明相关的product总共出现多少次,
现在需要选出出现最多的那个产品和次数,如下
A paper 3,
请问该怎么写query呢?多谢.
B*****g
发帖数: 34098
2
http://www.mitbbs.com/article_t/Database/31141034.html
那个谁,俺又用了一遍

【在 r****r 的大作中提到】
: 想了好久,没有解决,请帮忙看一下,多谢!
: name product total_num
: A paper 3
: A pen 2
: A paper 3
: A water 2
: A water 2
: A paper 3
: A pen 2
: 变量total_num表明相关的product总共出现多少次,

r****r
发帖数: 1693
3
select distinct A,B,max(C),D... from table group by A,B,D... order by
A,B,D
这个好像不行,结果是
A paper 3
A water 3
A pen 3,
但是无法选出拥有最大的total_num (3)的相应的product,
想要得结果是
A paper 3,
如何能在一步query里面,智能的找出某个变量的最大值,
并且同时选出其相应的另外一个变量值呢?

【在 B*****g 的大作中提到】
: http://www.mitbbs.com/article_t/Database/31141034.html
: 那个谁,俺又用了一遍

B*****g
发帖数: 34098
4
you need to continue read that post.

【在 r****r 的大作中提到】
: select distinct A,B,max(C),D... from table group by A,B,D... order by
: A,B,D
: 这个好像不行,结果是
: A paper 3
: A water 3
: A pen 3,
: 但是无法选出拥有最大的total_num (3)的相应的product,
: 想要得结果是
: A paper 3,
: 如何能在一步query里面,智能的找出某个变量的最大值,

j*****n
发帖数: 1781
5
mark... i am counting...

【在 B*****g 的大作中提到】
: http://www.mitbbs.com/article_t/Database/31141034.html
: 那个谁,俺又用了一遍

r****r
发帖数: 1693
6
Thanks a lot!
That works very well.

【在 B*****g 的大作中提到】
: you need to continue read that post.
1 (共1页)
进入Database版参与讨论
相关主题
厚脸皮的来请教一道很初级的题..请问这两个SQL QUERY有什么错?
跪求高人指点:一道SQL题3/5个包子可以么?先谢了!SQL server 2000有hidden records吗?
问个SQL的问题a sql question
我也问一个sql querry的问题more HELP: how to make this sql more efficient?
[Mysql] how to return NULL count in group by query (转载)问个SQL问题
请教一个queryMS ACCESS 里面怎么把两个Table combine 到一个table, 而且primary key不重复呢?
如何完成这个sql?How to write the query
ask for help with a simple query!!!SQL中怎样用定制列排序?
相关话题的讨论汇总
话题: paper话题: query话题: pen话题: num话题: product