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 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 using MS SQL Server, and I'd like to alter a view from within
I am writing a stored procedure and within this procedure I am using isNULL.
I would like to have a stored procedure that will update values in a
I am messing up somewhere when writing a function to execute stored procedure. I
So, I'm writing this Stored Proc and I really suck at SQL. My Question
I'm writing a client-server win32 application in Delphi 7 and in a section i
I am writing the necessary business logic in C# methods by using class library
I know many ways to avoid duplicating PHP code (in my case PHP). However,
I'm trying to write code to pull a list of product items from a
I have to write a query with lot of computations. Is it a good

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.