MS SQL Server Concepts and Programming Question:
Download Questions PDF

Can the Query Output Be Sorted by Multiple Columns in MS SQL Server?

MS SQL Server Interview Question
MS SQL Server Interview Question

Answer:

You can specifying multiple columns in the ORDER BY clause as shown in the following example statement, which returns rows sorted by "tag" and "counts" values:

SELECT tag, counts, url, created
FROM ggl_links ORDER BY tag, counts
GO
<pre>
tab counts url created
DBA 390 www.mysql.com 2006-01-01
DBA 960 www.oracle.com 2005-01-01
DBA 972 globalguideline.com 2007-05-19
DEV 120 globalguideline.com/xml 2006-04-30
DEV 439 www.php.net 2004-01-01
SQA 728 globalguideline.com/sql 2007-05-19
SQA 828 www.winrunner.com 2003-01-01
</pre>


Download MS SQL Server Interview Questions And Answers PDF

Previous QuestionNext Question
How To Sort the Query Output with ORDER BY Clauses in MS SQL Server?How To Sort Query Output in Descending Order in MS SQL Server?