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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T01:05:02+00:00 2026-05-25T01:05:02+00:00

I have a query that is returning the correct data to me, but being

  • 0

I have a query that is returning the correct data to me, but being a developer rather than a DBA I’m wondering if there is any reason to convert it to joins rather than nested selects and if so, what it would look like.

My code currently is

select * from adjustments where store_id in (
    select id from stores where original_id = (
        select original_id from stores where name ='abcd'))

Any references to the better use of joins would be appreciated too.

  • 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-25T01:05:03+00:00Added an answer on May 25, 2026 at 1:05 am

    Besides any likely performance improvements, I find following much easier to read.

    SELECT  * 
    FROM    adjustments a
            INNER JOIN stores s ON s.id = a.store_id
            INNER JOIN stores s2 ON s2.original_id = s.original_id
    WHERE   s.name = 'abcd'        
    

    Test script showing my original fault in ommitting original_id

    DECLARE @Adjustments TABLE (store_id INTEGER)
    DECLARE @Stores TABLE (id INTEGER, name VARCHAR(32), original_id INTEGER)
    
    INSERT INTO @Adjustments VALUES (1), (2), (3)
    INSERT INTO @Stores VALUES (1, 'abcd', 1), (2, '2', 1), (3, '3', 1)
    
    /* 
       OP's Original statement returns store_id's 1, 2 & 3 
       due to original_id being all the same
    */
    SELECT  * FROM @Adjustments WHERE store_id IN (
      SELECT id FROM @Stores WHERE original_id = (
        SELECT original_id FROM @Stores WHERE name ='abcd'))
    
    /* 
       Faulty first attempt with removing original_id from the equation
       only returns store_id 1
    */
    SELECT  a.store_id
    FROM    @Adjustments a
            INNER JOIN @Stores s ON s.id = a.store_id
    WHERE   s.name = 'abcd'        
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a simple Nhibernate Linq query that is returning more results than expected:
I have this rather complex query that grabs data from three tables, and now
I've got a query filter that is not returning correct data... This is to
I have a query that is returning in vastly different amounts of time between
This query that I have is returning therapists whose 'therapistTable.activated' is equal to false
I have the following LINQ expression that's not returning the appropriate response var query
I have a query below that is returning individual sales records with amounts for
I have a .group query that is not returning all the columns in the
I have a query that I have been tuning for some time but I
I am using in C# MYsql .I have query that works if I run

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.