I need the return of the execute command to be assigned to variable @PAGO because I will insert it into a temporary table only what returns is the script, not the value.
DECLARE @COMANDO_COMANDO_PAGO VARCHAR(2000)
SET @SITUACAO = 'PAGO'
SET @COMANDO_COMANDO_PAGO = 'select count(f.matricula)
from matricula m
inner join aluno a
on a.matricula = m.matricula
inner join financeiro f
on m.matricula = f.matricula
and m.ano = f.ano and m.semestre = f.semestre and m.periodo = f.periodo
where m.ano = ' + CONVERT(VARCHAR,@ANO) + ' and m.semestre = ' + CONVERT(VARCHAR,@SEMESTRE) + '
EXEC(@COMANDO_COMANDO_PAGO)
SET @PAGO = @COMANDO_COMANDO_PAGO
temporary table
INSERT INTO #temp_finc VALUES (@PERIODO,@PAGO,@EM_ABERTA)