On Sat, Apr 23, 2016 at 1:53 AM, Guyren Howe <guyren@xxxxxxxxx> wrote: > On Apr 22, 2016, at 18:56 , <david@xxxxxxxx> <david@xxxxxxxx> wrote: > Why schema-on-demand? Can you explain what you mean by that? > > Something that is attractive, for beginners or perhaps when prototyping is > that you don't have to declare a table. You can just insert tuples into a > predicate whose name you provide and they go in and you've defined a > relation just by using it. test=# \d No relations found. test=# select * into people from (values (1,'Fred'), (2, 'Bob')) x(id, name); SELECT 2 test=# select * from people; id | name ----+------ 1 | Fred 2 | Bob (2 rows) test=# \d List of relations Schema | Name | Type | Owner --------+--------+-------+--------- public | people | table | kgrittn (1 row) -- Kevin Grittner EDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-general mailing list (pgsql-general@xxxxxxxxxxxxxx) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-general