20/02/2013, 11:44
|
| Colaborador | | Fecha de Ingreso: agosto-2006 Ubicación: En la hermosa perla de occidente
Mensajes: 7.412
Antigüedad: 18 años, 3 meses Puntos: 774 | |
Respuesta: Error Variables en Store Procedure el else no se maneja asi como lo tienes deberia ser de este modo: IF(@Trans_type = 'subscr_signup')
BEGIN
@tmpType = 'premium' END
ELSE
begin
if (@Trans_type = 'subscr_cancel')
BEGIN
@tmpType = 'basic'
END
end
ó
IF(@Trans_type = 'subscr_signup')
BEGIN
@tmpType = 'premium'
END
ELSE
@tmpType = 'basic' http://msdn.microsoft.com/es-es/library/ms182587.aspx
__________________ What does an execution plan say to t-sql query? Go f**k yourself, if you are not happy with me |