Ver Mensaje Individual
  #9 (permalink)  
Antiguo 17/01/2006, 17:46
Avatar de Mithrandir
Mithrandir
Colaborador
 
Fecha de Ingreso: abril-2003
Mensajes: 12.106
Antigüedad: 21 años, 8 meses
Puntos: 25
Código:
CREATE FUNCTION dbo.fnIDPadre(
	@id int
) RETURNS VARCHAR(500)
AS
BEGIN

DECLARE @lista VARCHAR(500)
SET @lista = ''

SELECT @lista = @lista + sinonimo + ', '
WHERE id = @id

RETURN @lista

END
__________________
"El hombre, en su orgullo, creó a Dios a su imagen y semejanza."
Friedrich Nietzsche

Última edición por Mithrandir; 18/01/2006 a las 16:04