Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
Rafiq-rafiq
Starting Member
2 Posts |
Posted - 2013-04-12 : 05:57:35
|
Hi friends ,I have a table dbo.test with columns sno and name SNO NAME 1 A2 B3 C4 Dwhen i refresh the page or press f5 in sql server the last record should come first like below when page is refreshed SNO NAME 4 D1 A2 B3 Cagain when f5 is pressed thenwhen page is refreshed SNO NAME 3 C4 D1 A2 Bagain when f5 is pressed then SNO NAME 2 B3 C4 D1 Aagain when f5 is pressed then 1 A2 B3 C4 Di tried my best but not geting any solution yet..could u help me out in this ? |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2013-04-12 : 07:14:51
|
when i refresh the page or press f5 in sql server..which page? do you mean ssms query window?------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/https://www.facebook.com/VmBlogs |
|
|
Rafiq-rafiq
Starting Member
2 Posts |
Posted - 2013-04-12 : 09:22:19
|
when i press f5 in sql server to run the query .i should get the data in round robin logic way.. |
|
|
MIK_2008
Master Smack Fu Yak Hacker
1054 Posts |
Posted - 2013-04-12 : 11:03:02
|
Do you need this for any application? If yes, why don't you handle it on front end?CheersMIK |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2013-04-12 : 14:23:18
|
it should done at front end by means of parameter.------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/https://www.facebook.com/VmBlogs |
|
|
|
|
|