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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T17:35:28+00:00 2026-05-17T17:35:28+00:00

Writing a stored procedure in MS SQL Server 2008 R2, I want to avoid

  • 0

Writing a stored procedure in MS SQL Server 2008 R2, I want to avoid using DSQL…

I would like the sort method (ASC or DESC) to be conditional.

Now, with a numeric column I would simply use a case statement and negate the value to emulate ASC or DESC…
That is:

... ORDER BY CASE @OrderAscOrDesc WHEN 0 THEN [NumericColumn] ELSE -[NumericColumn] END ASC

What is an appropriate method for doing this with an alpha column?

EDIT: I thought of a clever way but it seems terribly inefficient… I could insert my ordered alpha column into a temp table with an autonumber then sort by the autonumber using the method described above.

EDIT2:

What do you guys think of this approach?

ORDER BY CASE @OrderAscOrDesc WHEN 0 THEN [AlphaColumn] ELSE '' END ASC,
CASE @OrderAscOrDesc WHEN 0 THEN '' ELSE [AlphaColumn] END DESC

I don’t know if forcing a sort on a uniform column is more efficient than deriving numbers from sorted strings though

  • 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-17T17:35:28+00:00Added an answer on May 17, 2026 at 5:35 pm

    One option

    ;WITH cQuery AS
    (
       SELECT
           *,
           ROW_NUMBER() OVER (ORDER BY SortColumn) AS RowNum
       FROM
           MyTable
    )
    SELECT
       *
    FROM
       cQuery
    ORDER BY
       RowNum * @Direction --1 = ASC or -1 = DESC
    

    Or CASE which IMHO is a bit uglier

    ORDER BY
      CASE WHEN 'ASC' THEN SortColumn ELSE '' END ASC,
      CASE WHEN 'DESC' THEN SortColumn ELSE '' END DESC
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing a stored procedure in SQL Server 2008, interatively. When using SQL Server
Okay so I'm writing a SQL Server 2008 Stored Procedure (maintenance script). In doing
I'm writing a SQL Server stored procedure in which I want to lock a
I'm writing a stored procedure in SQL Server 2008. It's a really long query
I am writing a Stored procedure in SQL Server 2008. I need to check
I'm writing a stored procedure on SQL Server 2000. I've written a complicated select
I'm writing some stored procedures in SQL Server 2008. Is the concept of optional
I am writing a SQL Server stored procedure for the first time and am
I am using SQL Server 2008 and I am writing a SQL Server Agent
I am writing a stored procedure where i m using try catch block. Now

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.