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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T11:00:31+00:00 2026-06-04T11:00:31+00:00

Suppose I have a mongodb collections A and B. While A has a foreign

  • 0

Suppose I have a mongodb collections A and B.
While A has a foreign key to B called b_id.

How do I do in MongoDB (or even in ruby is better) the following query:

select * from A where b_id not in (select id from B where <some_condition> );
  • 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-06-04T11:00:34+00:00Added an answer on June 4, 2026 at 11:00 am

    MongoDB doesn’t do relational queries (it’s not called NoSQL without cause) — but there are other ways you can accomplish this.

    1. Run a two-step query in your Mongo client, first getting the inner array, then using the $nin operator:

      var ids = db.B.find( conditions );
      db.A.find( { b_id: { $nin: ids } } );

    2. If you’re still in the design phase you can consider using nested documents for your schemas. For example, if B has many A, then you could add an array of A to each B as a property. (Keep in mind, though, that there is a limit to document size in MongoDB, so this is not a good solution if the number of A in any given B could be very large.)

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

Sidebar

Related Questions

suppose I have the following source table (called S): name gender code Bob 0
Suppose we have the following table data: ID parent stage submitted 1 1 1
Suppose I have the following HTML: <form id=myform> <input type='checkbox' name='foo[]'/> Check 1<br/> <input
Suppose I have some objects in MongoDB: { _id:xxx, name:mike, children: [ {name:A, age:3},
suppose we have this next sample code: while(some condition){ lock1.lock(); . . } the
Suppose we have the following: data Foo x from_list :: [x] -> Foo x
Suppose I have the following table: PERSON : ID INT NAME STRING LASTNAME STRING
suppose I have the following serial C: int add(int* a, int* b, int n)
Suppose I have the following two tables: STUDENT studentid lastname firstname 1 Smith John
Suppose I create a document in a MongoDB collection with the following structure and

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.