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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T18:39:47+00:00 2026-05-23T18:39:47+00:00

I have the following tables: Table ROWS ( **RowId**, Title) Table CELLS ( **CellId**,

  • 0

I have the following tables:

Table ROWS ( **RowId**, Title)

Table CELLS ( **CellId**, RowId, Title) 

Table ERRORS ( **ErrorId**, CellId, Title )

So rows can have cells and cells can have errors.

How do I write a query that retrieves the rows where the cells have no errors?

I know that something like this would work but I was wondering if it can be done in a more efficient manner :

QUERY1

SELECT ROWS.RowID FROM ROWS 
 JOIN CELLS ON ROWS.RowId = CELLS.RowID 
 JOIN ERRORS ON ERRORS.CellId = CELLS.CellId

QUERY2

SELECT * FROM ROWS 
WHERE ROWS.RowId NOT IN ( QUERY1 )** 

Any thoughts on how to do this in a more efficient manner ?

  • 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-23T18:39:48+00:00Added an answer on May 23, 2026 at 6:39 pm

    Some people have done research on this issue, see: http://explainextended.com/2009/09/18/not-in-vs-not-exists-vs-left-join-is-null-mysql/

    The conclusion is: use LEFT JOIN / IS NULL or NOT IN. Don’t use NOT EXISTS; that is slower.

    I think I would count the errors per row, and filter on that:

    select cells.rowid from cells 
    left join errors on errors.cellid=cells.cellid 
    group by cells.rowid 
    having count(errorid)=0;
    

    This avoids all sub selects.

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

Sidebar

Related Questions

I have the following tables: CREATE TABLE title ( booktitle VARCHAR( 60 ), title_id
I have a the following table with rows: =============================================== id| name | group1 |
I have two tables invoices and pending_payments both of which have the following rows
I have the following tables CREATE TABLE `files` ( `fileid` int(11) NOT NULL AUTO_INCREMENT,
I have the following five tables: ISP Product Connection AddOn AddOn/Product (pivot table for
I have the following two tables, affiliates and referrers. affiliates Table id loginid 3
I have following situation. A main table and many other tables linked together with
I have the following 3 tables: 1) Sweetness Table FruitIndex CountryIndex Sweetness 1 1
I have the following tables (removed columns that aren't used for my examples): CREATE
I'm having the following problem with 2 MySQL tables that have a relation: I

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.