What is the syntax of a for
loop in TSQL?
Advertisement
Answer
T-SQL doesn’t have a FOR
loop, it has a WHILE
loop
WHILE (Transact-SQL)
x
WHILE Boolean_expression
BEGIN
END
What is the syntax of a for
loop in TSQL?
T-SQL doesn’t have a FOR
loop, it has a WHILE
loop
WHILE (Transact-SQL)
WHILE Boolean_expression
BEGIN
END