i have table like this in POSTGRESQL:
Column | Type | Modifiers
---------------+-----------------------------+-----------
id | smallint | not null
merchant_id | smallint | not null
batch_no | smallint | not null
i have query like this :
select merchant_id , max(batch_no) from batch group by merchant_id
it returns a value like this :
merchant_id | max
-------------------+------
14 | 593
45 | 1
34 | 3
46 | 1
25 | 326
27 | 61
17 | 4
how i can get an id of each data? what query i can used for to get 1 result whish is the id of the data above?
select id, merchant_id, max(batch_no) from batch group by merchant_id– kobaltz Feb 3 at 3:58