Matthew Peter <survivedsushi@xxxxxxxxx> writes: > Out of curiosity, I was wondering if it is possible to > use dynamic table names in a function? In plpgsql, you can do this by building dynamic query strings and EXECUTE'ing them. Most of the other PLs don't cache query plans at all, and so all queries are effectively EXECUTE'd and there's no issue. You'll want to read up on quote_literal and quote_ident to help you in building correct query strings. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 4: Have you searched our list archives? http://archives.postgresql.org