Is there any methode for implement do while loop in SQL server 2008?
|
|
|||||
|
|
I am not sure about DO-WHILE IN MS SQL Server 2008 but you can change your WHILE loop logic, so as to USE like DO-WHILE loop. 1) Example of WHILE Loop
ResultSet: 1 2 3 4 5 2) Example of WHILE Loop with BREAK keyword
ResultSet: 1 2 3 3) Example of WHILE Loop with CONTINUE and BREAK keywords
ResultSet: 1 2 3 4 5 But try and avoid loops at database level. Reference. |
|||||
|
|
If you are not very offended by the
Here is the equivalent T-SQL code using goto:
Notice the one to one mapping between the GOTO enabled solution and the original DO / WHILE pseudocode. A similar implementation using a
Now, you could of course rewrite this particular example as a simple REPEAT / UNTIL, anyone?
... and the
Through creative use of
An argument can be made that for the case of the REPEAT / UNTIL, the If it wasn't for all of the disdain around the use of Use these at your own discretion, trying not to suffer the wrath of your fellow developers when they catch you using the much maligned |
|||||
|
