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

  • Home
  • SEARCH
  • 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 6716693
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T08:45:51+00:00 2026-05-26T08:45:51+00:00

I realize this example is entirely contrived, but I’m looking for a general rule

  • 0

I realize this example is entirely contrived, but I’m looking for a general rule of thumb here; is there any difference from a performance standpoint between these two queries?

Example 1: Reference outer table:

select o.id, o.name,
(select count(*) from inner_table i1 where i1.outerid = o.id),
(select sum(i2.amount) from other_inner_table i2 where i2.outerid = o.id)
from outer_table o
where o.id = @outerid

Example 2: Compare directly against parameter:

select o.id, o.name,
(select count(*) from inner_table i1 where i1.outerid = @outerid),
(select sum(i2.amount) from other_inner_table i2 where i2.outerid = @outerid)
from outer_table o
where o.id = @outerid 

I primarily use Sql Server 2008 R2, but I’d be interested in answers specific to any RDMS.

Update:

I realize this is hightly contextual; I guess I was just curious if this was only a stylistic choice or if there were circumstances where this would actual make a difference. I realize I could just “test it and see” for specific cases – but that’s not really the answer I’m after.

  • 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-26T08:45:52+00:00Added an answer on May 26, 2026 at 8:45 am

    I created some completely empty tables, with only the required columns to allow your queries to run:

    CREATE TABLE [dbo].[inner_table](
        [outerid] [int] NOT NULL
    )
    CREATE TABLE [dbo].[other_inner_table](
        [outerid] [int] NOT NULL,
        [amount] [int] NOT NULL
    )
    CREATE TABLE [dbo].[outer_table](
        [id] [int] NOT NULL,
        [name] [varchar](30) NOT NULL
    )
    

    I then turned on Execution plans, and executed both queries. In both cases, this showed that all 3 tables were being scanned (as expected, with no/low rows). In particular, the scan against inner_table has a predicate of:

    [DBName].[dbo].[inner_table].[outerid] as [i1].[outerid]=[@outerid]
    

    and the scan against other_inner_table has a predicate of:

    [DBName].[dbo].[other_inner_table].[outerid] as [i2].[outerid]=[@outerid]
    

    That is, in the first example, the optimizer has identified that the outer where clauses condition of where o.id = @outerid implies that, within the subqueries, o.id is always equal to @outerid, and has performed that substitution.

    In general, unless there is a performance issue, you shouldn’t try to “help” SQL by transforming the queries by hand. There are something like 300 different optimizations that the optimizer has available to it – you might not pick the best one(s).

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

Sidebar

Related Questions

I realize this is a contrived example, but I want a compile check to
I realize this is a very contrived example, but I've simplified the full version
I realize this is probably a hopelessly newbie question, but what is the difference
I realize this is a broad topic, but I'm looking for a good primer
I realize this isn't terrific from a security perspective but humor me. Is there
Caveat: I realize this is potentially a server configuration question, but I thought there
I realize this would violate convention, but I'm curious to know if you can
I realize this perhaps a naive question but still I cant figure out how
I realize this is more of a hardware question, but this is also very
I realize this is a rather odd request, but I was wondering if anyone

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.