Alcuni esempi di come sia possibile sfruttare le istruzioni di controllo del flusso offerte da T-SQL:
SET QUOTED_IDENTIFIER OFF
SET NOCOUNT ON
GO
declare @test varchar(40)
select @test = "mio testo"
if @test = "mio testo"
begin
print "@test contiene le parole 'mio testo'"
end
else
begin
print "@test non contiene le parole 'mio testo'"
end
declare @conta int
select @conta = 0
while @conta < 5
begin
select @conta = @conta + 1
print "Conteggio --> " + convert(varchar(5),@conta)
end