Subject | Re: [IBDI] Create Table Problem |
---|---|
Author | Robert F. Tulloch |
Post date | 2000-11-22T04:54:30Z |
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?
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?