Re: New mug design - Mailing list pgsql-advocacy

From Bruce Momjian
Subject Re: New mug design
Date
Msg-id 200911282139.nASLdPH19906@momjian.us
Whole thread Raw
In response to Re: New mug design  (Rob Napier <rob@doitonce.net.au>)
Responses Re: New mug design  (Andreas 'ads' Scherbaum <adsmail@wars-nicht.de>)
Re: New mug design  ("Marc G. Fournier" <scrappy@hub.org>)
Re: New mug design  (Rob Napier <rob@doitonce.net.au>)
List pgsql-advocacy
Rob Napier wrote:
> I suggest that you combine the two ideas:
>
> >>> INSERT INTO pg_mug VALUES('coffee', 'water', 'sugar', 'cream');
>
> And
>
> >> BEGIN;
> >> CREATE TABLE postgresql (mug_id SERIAL);
> >> COMMIT;

You mean:

    BEGIN;
    CREATE TABLE pg_mug (contents TEXT);
    INSERT INTO pg_mug VALUES('coffee', 'sugar', 'cream');
    COMMIT;

?

I don't think "water" makes sense unless you are making instant coffee,
which I think is atypical.

--
  Bruce Momjian  <bruce@momjian.us>        http://momjian.us
  EnterpriseDB                             http://enterprisedb.com

  + If your life is a hard drive, Christ can be your backup. +

pgsql-advocacy by date:

Previous
From: Rob Napier
Date:
Subject: Re: New mug design
Next
From: Andreas 'ads' Scherbaum
Date:
Subject: Re: New mug design