Help with syntax error - Mailing list pgsql-general

From Arbol One
Subject Help with syntax error
Date
Msg-id BYAPR12MB2808DF98728597CE430A9B3DBA352@BYAPR12MB2808.namprd12.prod.outlook.com
Whole thread Raw
Responses Re: Help with syntax error
Re: Help with syntax error
List pgsql-general

I have these tables:

CREATE TABLE IF NOT EXISTS registrar (
index SERIAL,
registrar_id TEXT,
day TEXT NOT NULL,
month TEXT NOT NULL,
year TEXT NOT NULL,
hour TEXT NOT NULL,
minute TEXT NOT NULL,
second TEXT NOT NULL,
millisecond TEXT NOT NULL,
am_pm TEXT NOT NULL,
admin BOOLEAN NOT NULL DEFAULT false,
CONSTRAINT key PRIMARY KEY (registrar_id) );

CREATE TABLE IF NOT EXISTS user_name (
user_name_id TEXT PRIMARY KEY REFERENCES registrar(registrar_id),
first_name TEXT NOT NULL,
middle_name TEXT NOT NULL,
last_name TEXT NOT NULL);

When I enter the following pg commands :

INSERT INTO registrar VALUES (DEFAULT, '18551420601012L23', '1', '12', '2024', '18', '55', '14', '207', 'PM');
INSERT INTO user_name '18551420601012L23', 'John', 'Fitzgerald', 'Kennedy'); <=
UserNameTable.write()

I get this message :

Exception in thread "main" java.sql.SQLException: In company.contact.Company$UserNameTable.write()
ERROR: syntax error at or near "'18551420601012L23'"
  Position: 23

The error is in the user_name_id, which is a primary that references the table "registrar" 's "registrar_id" primary key.
According to the documentation, the insertion should be OK, no?

What am I doing wrong?


--
ArbolOne ™
Using Fire Fox and Thunderbird.
ArbolOne is composed of students and volunteers dedicated to providing free services to charitable organizations.
ArbolOne's development on Java, PostgreSQL, HTML and Jakarta EE is in progress [ í ]

pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: Errors when restoring backup created by pg_dumpall
Next
From: Adrian Klaver
Date:
Subject: Re: Help with syntax error