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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T13:03:40+00:00 2026-06-04T13:03:40+00:00

I want to have a variable for selecting top rows. I can select top

  • 0

I want to have a variable for selecting top rows. I can select top rows based on a variable. However I want to select all rows if the variable is not supplied.

Currently I’m using this query:

DECLARE @TOPCOUNT int;
SET @TOPCOUNT=10;

SELECT TOP(@TOPCOUNT) * FROM TABLE1

Update:

  1. The original query is very lengthy and complex, so I don’t to rewrite the entire query without top count in else clause.

  2. I don’t want to use dynamic query because of its repercussions.

  • 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-04T13:03:42+00:00Added an answer on June 4, 2026 at 1:03 pm

    Something like this:

    DECLARE @TOPCOUNT int;
    --SET @TOPCOUNT=10;
    
    IF @TOPCOUNT IS NULL
        SELECT * FROM TABLE1
    ELSE
        SELECT TOP(@TOPCOUNT) * FROM TABLE1
    

    Added after above UPDATE – if this is a parameter of a Stored Procedure then just provide a default for @TOPCOUNT:

    @TOPCOUNT INT = 2147483647 --max size of INT
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's say I have a data.table and I want to select all the rows
I have a table.From that table i am selecting rows Based on the key
I want to have a string variable for a PHP class, which would be
i have a variable like the following and i want a function to only
i have a variable $cartTotal in cart.php page i want to use that same
I have a variable which I get from database I want to output this
I have a variable newItem. I want to place the value stored in newItem
i have the variable $a = 5; i want to show it in binary
i have a variable [ Dim mytime = 12:30:00 AM ] i want to
I have a variable of type size_t , and I want to print it

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.