Mysql Query problem ?
Posted
by deep
on Stack Overflow
See other posts from Stack Overflow
or by deep
Published on 2010-03-31T12:54:31Z
Indexed on
2010/03/31
13:03 UTC
Read the original article
Hit count: 296
mysql
ID NAME AMT
1 Name1 1000
2 Name2 500
3 Name3 3000
4 Name1 5000
5 Name2 2000
6 Name1 3000
consider above table as sample.
am having a problem in my sql query, Am using like this.
Select name,amt from sample where amt between 1000 and 5000
it returns all the values in the table between 1000 and 5000, instead I want to get maximum amount record for each name
i.e.,
3 name3 3000
4 name1 5000
5 name2 2000
© Stack Overflow or respective owner