Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3335972
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T00:04:49+00:00 2026-05-18T00:04:49+00:00

There is one-2-many relation between Property and Reservation. Property has column called ‘nr_of_bookings’. I

  • 0

There is one-2-many relation between Property and Reservation. Property has column called ‘nr_of_bookings’. I need DQL that will retrieve only the properties that has COUNT(Reservation) less than Property.nr_of_bookins.

An example: Some Property has nr_of_bookings = 3 . If it has 5 Reservations related, it will not be retrieved. But if it has 2 related Reservations, it will be retrieved.

I tried numerous combinations, but I miss something obviosly. I posted similar question
here , but it is better to start from scratch. Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T00:04:50+00:00Added an answer on May 18, 2026 at 12:04 am

    Have you tried:

    'SELECT p FROM Product p WHERE SIZE(p.reservations) < p.nr_of_bookings'
    

    EDIT: The above is for Doctrine 2. For Doctrine 1.2, looking at your code, I’m guessing your HAVING clause is referencing something that’s not in a group by or the result of an aggregate function. Try something like this:

    $q = PropertyTable::getInstance()
        ->createQuery('p') 
        ->select('p.*, COUNT(r.id) as num_of_reservations, SUM(p.nr_of_bookings) as num_bookings') 
        ->leftJoin('p.Reservation r') 
        ->groupBy('p.id') 
        ->having('num_of_reservations < num_bookings');
    

    You’re grouping by p.id so SUM(p.nr_of_bookings) will be equal to p.nr_bookings.

    From the MySQL documentation:

    The SQL standard does not permit the HAVING clause to name any column not found in the GROUP BY clause if it is not enclosed in an aggregate function.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a many-to-one relation mapped between two entities A and B. I will
I am learning django admin, i have to models with a one-to-many relation between
I have an entity User and an entity Address. There is a relation One-to-Many
I have a question about One-To-Many relationship between two tables when there is the
I want to enable something like a one-to-many relation between a text object and
I have the following Object PatientEligibilityObject It has One To Many relation with PatientsEligibilitiesDoctorsSpecialties
I have a one-to-many relation between Parent and Child table. In the parent object
There is one form, inside the form there are many checkboxes. Two operations can
I have 2 Entities, related by a many-to-many relationship. Thing<<->>Tag There is one NSArrayController
There are many security reasons why one would want to drop an HTTP connection

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.