| From: | Mike Mascari <mascarm(at)mascari(dot)com> |
|---|---|
| To: | Ying Lu <ying_lu(at)cs(dot)concordia(dot)ca> |
| Cc: | pgsql-general(at)postgresql(dot)org |
| Subject: | Re: Could not create a table named "USER" under postgreSQL |
| Date: | 2004-08-18 18:24:08 |
| Message-ID: | 41239EC8.9030107@mascari.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
Ying Lu wrote:
> Hello,
>
> I have a table named "USER" under MySQL database. When I am trying to
> move tables from MySQL to PostgreSQL, I found that I could not create a
> table namely "USER". I guess "USER" is a key string used by PostgreSQL
> system so that we could not create a table named "USER". Is that true?
You'll have to quote it in all the SQL you use if you insist on
using it:
[test(at)lexus] create table user (key integer);
ERROR: syntax error at or near "user" at character 14
[test(at)lexus] create table "user" (key integer);
CREATE TABLE
[test(at)lexus] insert into user values (1);
ERROR: syntax error at or near "user" at character 13
[test(at)lexus] insert into "user" values (1);
HTH,
Mike Mascari
| From | Date | Subject | |
|---|---|---|---|
| Next Message | David R. Heffelfinger | 2004-08-18 18:27:11 | Re: Postgres and JBOSS |
| Previous Message | Dino Vliet | 2004-08-18 18:24:04 | can postgresql handle these large tables |