Ver Mensaje Individual
  #1 (permalink)  
Antiguo 16/12/2010, 16:00
zolkas
 
Fecha de Ingreso: diciembre-2010
Mensajes: 1
Antigüedad: 14 años
Puntos: 0
Sql 2008 goto

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'