I'm hoping someone can clarify this for me. In a plpgsql function what is the purpose of 2 apostrophies instead of 1?
e.g
INSERT INTO location_county VALUES (nextval(''county_seq''),p_name);
works but,
INSERT INTO location_county VALUES (nextval('county_seq'),p_name);
gives and error 'Unable to identify a function that satisfies the given argument types'.
TIA
Steve