Gabriel Filipiak
Gabriel Filipiak

Reputation: 986

Dynamic SQL PostgreSQL

I want to know the basics of dynamic sql especially in PostgreSQL. I was googling for a while but have no luck for getting a good described examples. Maybe someone here could give me some links to the materials from which you where studying this subject.

Ok so to be more accurate I am interested in examples of especially PL/SQL (PostgreSQL) code which will demonstrate examples with description :)

Upvotes: 2

Views: 4595

Answers (1)

plang
plang

Reputation: 5646

Here is a good place to start: http://www.postgresql.org/docs/9.1/static/plpgsql-statements.html#PLPGSQL-STATEMENTS-SQL-NORESULT

Look in particular at section called "Executing Dynamic Commands".

Upvotes: 1

Related Questions