Procedural Constructs
Compound Statements
Loops
while
declare n integer default 0;
while n < 10 do
set n = n + 1
end whilerepeat
repeat
set n = n – 1
until n = 0
end repeatfor
Conditional Constructs
Exception Handling
Last updated