Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
CREATE FUNCTION events4prospect(refcursor, int4) RETURNS refcursor AS '
BEGIN
OPEN $1 FOR SELECT to_char(event_date, ''MM/DD/YYYY HH12:MI:SS AM'')
AS event_date,event_type,event_result FROM prospect_events
WHERE prospect_id = $2;
RETURN $1;
END;
' LANGUAGE 'plpgsql';