Using SELECT with the Between And operator
SELECT location.Location, hotels.name, hotels.price, hotels.stars
FROM hotels INNER JOIN location ON hotels.locationID = location.LocationID
WHERE (((hotels.price) Between "200" And "300"));
The query selects from two tables (hotels and location), the hotels that are priced between 200 and 300 included.