Ver Mensaje Individual
  #6 (permalink)  
Antiguo 26/08/2005, 15:47
Avatar de Mithrandir
Mithrandir
Colaborador
 
Fecha de Ingreso: abril-2003
Mensajes: 12.106
Antigüedad: 21 años, 8 meses
Puntos: 25
No recuerdo exactamente, pero algunas veces los return son un poco quisquillosos y hay que usar una variable temporal, algo como:
Código:
CREATE FUNCTION dbo.encontrar_valv (@ic int)
RETURNS int AS
BEGIN
DECLARE @valv INT
SELECT @valv=COUNT(IdNodo) FROM Nodos WHERE IdEC= @ic
RETURN @valv
END
GO

SELECT dbo.encontrar_valv(1)
GO
__________________
"El hombre, en su orgullo, creó a Dios a su imagen y semejanza."
Friedrich Nietzsche