sql server order by multiple columns

SQL Server order by multiple columns

Hello everyone, I am going to share the code sample for order by multiple columns using SQL Server. The detail about it as given below.

The Table of Content for order by multiple columns.
  1. Syntax for order by multiple columns.
  2. Example for order by multiple columns.
  3. Live demo outputs

Syntax:

/* ORDER BY MULTIPLE COLUMNS */
SELECT  *
            FROM YourTable 
            ORDER BY YourCol1 DESC, YourCol1 ASC


Example for  order by multiple columns

/* SQL SERVER ORDER BY MULTIPLE COLUMNS */
SELECT TOP 100 [UID]
      ,[ContactName]
      ,[LastUpdateBy]
     
  FROM dbo.[User]
  ORDER BY ContactName DESC, LastUpdateBy ASC






ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^