Re: New mug design

From: Bruce Momjian <bruce(at)momjian(dot)us>
To: Rob Napier <rob(at)doitonce(dot)net(dot)au>
Cc: "Marc G(dot) Fournier" <scrappy(at)hub(dot)org>, Thom Brown <thombrown(at)gmail(dot)com>, damien clochard <damien(at)dalibo(dot)info>, Josh Berkus <josh(at)agliodbs(dot)com>, "Andreas 'ads' Scherbaum" <adsmail(at)wars-nicht(dot)de>, pgsql-advocacy(at)postgresql(dot)org
Subject: Re: New mug design
Date: 2009-11-28 21:39:25
Message-ID: 200911282139.nASLdPH19906@momjian.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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(at)momjian(dot)us> http://momjian.us
EnterpriseDB http://enterprisedb.com

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

In response to

Responses

Browse pgsql-advocacy by date

  From Date Subject
Next Message Andreas 'ads' Scherbaum 2009-11-28 21:53:46 Re: New mug design
Previous Message Rob Napier 2009-11-28 21:20:26 Re: New mug design