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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T02:15:33+00:00 2026-05-23T02:15:33+00:00

I am creating a SQL Server query that will take a parameter and use

  • 0

I am creating a SQL Server query that will take a parameter and use that as the record number to return.

In pseudo code:

parameter returnCount

select top returnCount * from table where x = y

What is the correct syntax/code to perform that operation?

  • 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-23T02:15:34+00:00Added an answer on May 23, 2026 at 2:15 am

    In SqlServer 2005 and up, do this:

    CREATE PROCEDURE GetResults    (
        @ResultCount   int
    )
    AS
    
    SELECT top(@ResultCount) FROM table where x = y
    

    For earlier versions, use:

    CREATE PROCEDURE GetResults    (
        @ResultCount   int
    )
    AS
    
    SET ROWCOUNT @ResultCount
    
    SELECT * FROM table where x = y
    

    https://web.archive.org/web/20210417081325/http://www.4guysfromrolla.com/webtech/070605-1.shtml for more information.

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

Sidebar

Related Questions

I'm trying to create a query on SQL server 2005 that will check if
I'm wondering how SQL Server orders data that is returned from a query and
The way that SQL server seems to be optimising a query is causing it
I'm working with SQL Server 2000 and Java. I am creating an application that,
I am creating a SQL Server database programmatically during a conversion. If the conversion
I need a programmatic way of creating a SQL Server ODBC Data Source. I
I am creating a database in SQL Server 2005 and cannot remember the CREATE
I'm creating a trigger in SQL Server after INSERT, UPDATE and DELETE. Is there
I'm creating a log shipping configuration between two sql server 2005 instances. I'm shipping
I always ignore this option when creating a new database on SQL Server 2005,

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.