Buenas tardes
Reciban un cordial saludo y queria saber si alguno sabe como se puede parametrizar por medio de una variable el comando GoTo,
tengo el siguiente caso:
declare @Label varchar(200)
Set @Label = (Select Paso from Parametros where Estado = 1)
Exec (@Label)
If @Label = is not NULL
Begin
GoTo @Label
end
Paso1:
Select IdCliente from Clientes where estado = 'A'
Paso2:
Select IdCliente from Clientes where estado = 'I'