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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T09:31:51+00:00 2026-05-27T09:31:51+00:00

I would like to hear if anyone can tell me a simple syntax that

  • 0

I would like to hear if anyone can tell me a simple syntax that accomplishes the same as the following (with the same flexibility):

SELECT C.CompanyName,
(SELECT Count(*) FROM Employees WHERE CompanyId = C.Id) as EmployeeCount
FROM Company C

Now, what’s important is that the inner SELECT giving the EmployeeCount is:

  1. An independent SELECT statement
    • This means that it should work with any existing SELECT, even if it already contains joins etc.
  2. Can use values from the parent SELECT

I know that this scenario can be easily accomplished in other ways, but the above is a simplified example to explain the challenge. My real scenario is a complex SELECT statement where I do not want to complicate it by adding more joins. Performance is no issue.

  • 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-27T09:31:51+00:00Added an answer on May 27, 2026 at 9:31 am

    Using INNER JOIN:

    SELECT C.CompanyName, Count(E.*) as EmployeeCount
    FROM Company C
    INNER JOIN Employees E on E.CompanyId = C.Id 
    

    Using NESTED JOIN:

    SELECT C.CompanyName, Count(E.1) as EmployeeCount
    FROM Company C, Employess E
    WHERE E.CompanyId = C.Id
    

    If you want to use the same syntax, at least put this:

    SELECT C.CompanyName,
    (SELECT Count(1) FROM Employees WHERE CompanyId = C.Id) as EmployeeCount
    FROM Company C
    

    If you need all the data to be shown, even the ones the companies without any Employees, you can use a LEFT OUTER JOIN:

    SELECT C.CompanyName, Count(E.*) as EmployeeCount
    FROM Company C
    LEFT OUTER JOIN Employees E on E.CompanyId = C.Id 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I heard it can be done, but would like to hear if anyone has
I would like to build (or find) a php reporting library that I can
I would like to hear some opinions about using the isolated storage in Silverlight
I would like to hear opinions or peoples experiences regarding Rel . Is it
I would like to hear of the experiences of classic vb developers who migrated
I would like to hear what web UI testing tools you have found to
I am writing some development management tools in C# and would like to hear
This might be on the discussy side, but I would really like to hear
I would like to hear any practical uses of Digital Zoom. I only see
Question Can anyone recommend a library for Ocaml that offers an actor-based concurrency model

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.