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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T04:52:47+00:00 2026-06-08T04:52:47+00:00

I have two views that returns the same columns, but different rows. I am

  • 0

I have two views that returns the same columns, but different rows.

I am creating a stored procedure that uses these views. The stored procedure is big and searches across columns for rows that match.

Now, my wish is this: If i receive a bit parameter with the value 0, then i should get information from one view, if the parameter is 1 then i should get the information from another view.

I have understood that dynamic SQL is a bad idea, and the stored procedure i am working with is already quite complex. Recreating it to be dynamic is not an option.

I have also read about it being impossible to do this:

select * from @table

Because table names should be static, and not passed in to ex. a stored procedure by code.

What i am trying to accomplish is something like this:

SELECT TOP(@top) subtaskid,activityid FROM 
(CASE WHEN @allProjects=1 THEN view_project_all ELSE view_project_mine) v

however i get error messages saying “incorrect syntax near keyword ‘CASE’. I realize that this question is closely related to dynamic sql, and variable views\tables questions all over stackoverflow, however i think that since my two tables are actually in the stored procedure this is more functionality than hack…

Question is this: Is there a way to set static variables so this one select can ask different views, according to parameter given?

  • 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-08T04:52:48+00:00Added an answer on June 8, 2026 at 4:52 am

    The simple way:

    IF @allProjects = 1
    BEGIN
        SELECT TOP(@top) subtaskid,activityid FROM view_project_all v;
    END
    ELSE
        SELECT TOP(@top) subtaskid,activityid FROM view_project_mine v;
    BEGIN
    END
    

    If you wish, you can create a view that unions these tables then do your queries against that view:

    SELECT subtaskid, activityid, 1 as allProjects FROM view_project_all
    UNION ALL
    SELECT subtaskid, activityid, 0 as allProjects FROM view_project_mine
    

    Query against it:

    SELECT TOP(@top) subtaskid,activityid FROM view_project_mine_all_union v WHERE allProjects = @allProjects;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two tabbar items(views) that use the same data, whats the best solution
I have Process objects that are monitored from two different views. A Windows.Forms.ListView (actually
I have two different views to the same database table and I would like
I have two functions that return simple strings. Both are registered. $.views.helpers({ parseDate: function
I have two views that I would like to combine into one. The first
I have an app that has a centre view with two views off to
I'm using MVC2 with VS2010 I have a view that has two partial views
I have a view that contains two NSTextFieldCell s. The size at which these
I have a grid view that has two simple columns, a report number and
I have two separate views that both show multiple lists of values. Both views

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.