Advertisement
jzgeorge

f_concatenar_respuestas_unidad

Jan 29th, 2019
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. CREATE OR REPLACE FUNCTION esq_ceac_planclase.f_concatenar_respuestas_unidad(p_idplanclase numeric, p_idunidad numeric)
  2.   RETURNS text AS
  3. $BODY$
  4. DECLARE
  5.  evaluacionjson text;
  6. BEGIN
  7.  SELECT (('['::text || array_to_string(array_agg(regexp_replace(regexp_replace(tbl_plc_designacion_estudiante.json_evaluacion, ']'::text, ''::text, 'g'::text), '\['::text, ''::text, 'g'::text)), ','::text)) || ']'::text) into evaluacionjson
  8.            FROM esq_ceac_planclase.tbl_plc_designacion_estudiante WHERE  esq_ceac_planclase.tbl_plc_designacion_estudiante.idplanclase=p_idplanclase and
  9.            esq_ceac_planclase.tbl_plc_designacion_estudiante.idunidad=p_idunidad;
  10.            return evaluacionjson;
  11. END;
  12. $BODY$
  13.   LANGUAGE plpgsql VOLATILE
  14.   COST 100;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement