I have all the hotel and room price, in these data, I need to fetch the lowest price room among the hotels data, below is my query it is not picking the least price example hotelname3, room2, 5.
SELECT *
FROM (hoteldata)
GROUP BY hotelname
ORDER BY price ASC