Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/06/2010, 12:09
Avatar de huesos52
huesos52
Colaborador
 
Fecha de Ingreso: febrero-2009
Ubicación: Manizales - Colombia
Mensajes: 5.980
Antigüedad: 15 años, 11 meses
Puntos: 360
Respuesta: funcion dentro de funcion

La llamas como si llamases cualquier función.

Código SQL:
Ver original
  1. CREATE OR REPLACE FUNCTION nueva_funcion()
  2.   RETURNS text AS
  3. $BODY$
  4. DECLARE
  5. v_variable TEXT;
  6. BEGIN
  7. v_variable = otra_funcion(1,2);
  8. RETURN v_variable;
  9. END;
  10. $BODY$
  11.   LANGUAGE 'plpgsql' VOLATILE

Donde otra_funcion es la que habias hecho anteriormente para comprobar el rut.

saludos
__________________
Without data, You are another person with an opinion.
W. Edwads Deming