i have a table #temp1(id, Name groupname ) and record
like this 1 R1 S
2 R3 S
3 R2 S
4 R4 D
5 R5 D
6 R6 K
7 R7 K
8 R8 L
9 R9 L
10 R10 L
11 R11 K
and i want to display record based on user defind sorting
order e.g.
1 R4 D
2 R5 D
3 R6 K
4 R7 K
5 R11 K
6 R1 S
7 R3 S
8 R2 S
9 R8 L
10 R9 L
11 R10 L
Answer Posted / alka
select id,name, groupname from #temp1
Order by groupname,name
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How adventureworkslt tables are related?
What is the difference function and stored procedure?
What is nonclustered index on computed columns?
Explain about nested stored procedure?
Which tcl commands are available on the sql server?
What is the recovery model?
You schedule a job to run every minute what will happen if the first job runs more than 1 min? Will the second instance of the job start?
what are the core components of SSRS?
What is the full form of dql?
How to retrieve error messages using odbc_errormsg()?
Can you explain the disadvantages/limitation of the cursor?
What is failover clustering overview?
what is a default tcp/ip socket assigned for sql server? : Sql server database administration
Explain time data type in sal server 2008?
What are cursors stored procedures and triggers?