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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T00:38:35+00:00 2026-06-14T00:38:35+00:00

I am writing down a view in SQL server (DWH) and the use case

  • 0

I am writing down a view in SQL server (DWH) and the use case pseudo code is:

-- Do some calculation and generate #Temp1
-- ... contains other selects

-- Select statement 1
SELECT * FROM Foo
JOIN #Temp1 tmp on tmp.ID = Foo.ID
WHERE Foo.Deleted = 1

-- Do some calculation and generate #Temp2
-- ... contains other selects

-- Select statement 2
SELECT * FROM Foo
JOIN #Temp2 tmp on tmp.ID = Foo.ID
WHERE Foo.Deleted = 1

The result of the view should be:

Select Statement 1
UNION
Select Statement 2

The intended behavior is the same as the yield returnin C#. Is there a way to tell the view which SELECT statements are actually part of the result and which are not? since the small calculations preceding what I need also contain selects.

Thank you!

  • 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-14T00:38:36+00:00Added an answer on June 14, 2026 at 12:38 am

    I found a better work around. It might be helpful for someone else. It is actually to include all the calculation inside WITH statements instead of doing them in the view core:

    WITH Temp1 (ID)
    AS
    (
        -- Do some calculation and generate #Temp1
        -- ... contains other selects
    )
    
    , Temp2 (ID)
    AS
    (
        -- Do some calculation and generate #Temp2
        -- ... contains other selects
    )
    
    -- Select statement 1
    SELECT * FROM Foo
    JOIN Temp1 tmp on tmp.ID = Foo.ID
    WHERE Foo.Deleted = 1
    
    UNION
    
    -- Select statement 2
    SELECT * FROM Foo
    JOIN Temp2 tmp on tmp.ID = Foo.ID
    WHERE Foo.Deleted = 1
    

    The result will be of course the UNION of all the outiside SELECT statements.

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

Sidebar

Related Questions

I'm writing StoreKit-related code, and I'm getting some rather troubling error codes when I
I am writing a markdown compiler in Erlang for server-side use. Because it will
My grid view has some items I can remove each sucessfully by just writing
While I was writing some Scala code, I got a strange error message when
I am writing down a function and it takes an argument which is the
I am writing down my understanding of the CSRF protection mechanism in Django. Please
In my email regex i want following output abc@abc.co.in I am writing down below
I'm going to write a CMS, but right now I'm writing down all my
If you scroll down to the section 'Writing to Files and URLs' at this
I'm writing my own simple drop-down...and it's not going so well. I need only

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.