Ver Mensaje Individual
  #6 (permalink)  
Antiguo 03/03/2006, 12:31
Avatar de Mithrandir
Mithrandir
Colaborador
 
Fecha de Ingreso: abril-2003
Mensajes: 12.106
Antigüedad: 21 años, 8 meses
Puntos: 25
Una manera alternativa es:
Código:
CREATE PROCEDURE RegTemasServicios @id bigint AS
AS

IF EXISTS(SELECT Nombre, Bajada, Padre FROM tema WHERE Padre = @id)
BEGIN
	SELECT Nombre, Bajada, Padre 
	FROM tema
	WHERE Padre = @id
END
ELSE
BEGIN
	SELECT Nombre, Bajada, ImagenPequena
	FROM servicios
	WHERE idTema = @id
END
__________________
"El hombre, en su orgullo, creó a Dios a su imagen y semejanza."
Friedrich Nietzsche