Microsoft
Software
Hardware
Network
Question : multiple conditions in WHILE
what is wrong in the foll syntax:
WHILE (@Var1 < 1 AND @Var2 < 1)
This does not seem to be honored. When any one of the variable become >1, the loop breaks.
thanks
Answer : multiple conditions in WHILE
exactly.
when any of the 2 > 1, you have:
WHILE ( false AND true ) which is FALSE
you seem to want:
WHILE (@Var1 < 1 OR @Var2 < 1)
Random Solutions
Raid 1 Rebuild Failed - Adaptec 1210SA
GROUP BY Case Statements
Citrix XenServer can't mount NFS share
Exchange 2010. Install Failed, now can't uninstall
transfering a directory with multiple files in parallel
Flex CountDown Timer
asp.net connection string error.
Word 2003 - working with tables, rows, and cells
Outlook not attack shortcut (lnk) attach directly the file
Do WPF and MVP go together?