Subject Re: [IBDI] Create Table Problem
Author Robert F. Tulloch
Hi:

Now I am somewhat confused again.

I just recreated the table:

CREATE TABLE TRGREV
(
REVISION DOUBLE PRECISION,
REVDATE DATE
);


And the meatadata is:

CREATE TABLE "TRGREV"
(
"REVISION" DOUBLE PRECISION,
"REVDATE" DATE
);


So if I created another table:

CREATE TABLE "TRGREV1"
(
"REVISION" DOUBLE PRECISION,
"REVDATE" DATE
);


And the meatadata:

CREATE TABLE "TRGREV1"
(
"REVISION" DOUBLE PRECISION,
"REVDATE" DATE
);

So it appears that whether I use quotes in the Create or not makes
no difference in the result. Is that correct?