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 6024453
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T04:09:27+00:00 2026-05-23T04:09:27+00:00

I have a collection of users who completed a certain test and a list

  • 0

I have a collection of users who completed a certain test and a list of users who got an invite for that test. Now I’d like to fetch all the users who did not complete the test. I thought it’d be simple to diff the two collections (like arrays), but only Doctrine_Collection::merge() is possible.

My datamodel (much left out for clarity):

Invite:
  columns:
    id: integer (10)
  relations:
    users:
      foreignAlias: invites
      class: User
      refClass: UserInvite

UserInvite:
  columns:
    user_id: integer (10)
    invite_id: integer (10)
  relations:
    user:
      class: User
      foreignAlias: userInvite
    invite:
      class: Invite
      foreignAlias: userInvite

Test:
  columns:
    id: integer (10)
    user_id: integer (10)
    invite_id: integer (10)
  relations:
    user:
      class: User
      foreignAlias: tests
    invite:
      class: Invite
      foreignAlias: tests

Now these two collections are available to me:

$invite = new Invite;
$invite = $invite->users; // All the users who got an invite
$invite = $invite->tests; // All the tests performed for this invite

What’s the best method to get all the users? I can perform an SQL query, but I’t like to do this in OOP php or else a DQL query. In SQL, I can do something like this:

SELECT u.name, u.id
FROM user u
    LEFT JOIN userinvite i
        ON i.user_id = u.id
    LEFT JOIN test t
        ON t.user_id = u.id
WHERE i.id IS NOT NULL
AND t.id IS NULL
  • 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-23T04:09:28+00:00Added an answer on May 23, 2026 at 4:09 am

    Okay, I now know I had to approach this problem via the User model itself. This DQL query fetches all the users who miss their test from a specific invite:

    $user  = new User;
    $users = $user->getTable()
                  ->getQueryObject()
                  ->leftJoin('User.userInvite i')
                  ->leftJoin('User.tests t')
                  ->where('i.invite_id = ?', $invite->id)
                  ->andWhere('i.user_id IS NOT NULL')
                  ->andWhere('t.user_id IS NULL')
                  ->execute();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a list: Collection users which has around 100K+ records of users (all
I have a list of users (six to be exact) in a collection with
I have multiple Users, each with a collection of Tasks. public class User {
I have a form where users can modify a collection of objects using a
I have a collection of user models that starts with basic data: [ {'_id':
So, I have a collection called: 'members' and in that I have a user
I am developing web application where users have collection of tags. I need to
I have a collection of Posts and Users where users can upvote/downvote each post.
I have a collection of users, each of which may be subscribed to one
I have a geo_locations table that looks like this: country | city | postalCode

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.