Given an example of table:
id | item_id | user_id | bid_price ----------------------------------
The task is to select rows wi
Use this query:
SELECT id, item_id, user_id, min(bid_price) as bid_price FROM YOUR_TABLE_NAME GROUP BY item_id;