Help me, please! How to convert this SELECT hotel_id FROM hotelrooms GROUP BY hotel_id HAVING COUNT(room_id) < 20 to Django ORM?
Model:
class hotelrooms(models.Model):
  room_id = models.IntegerField()
  hotel_id = models.IntegerField()
  price = models.IntegerField()
