Subject RE: [firebird-support] reserved words as field names at create table?
Author Alan McDonald
> Hello together,
>
> we habe a problem with the create table syntax which no other database
> has.
>
> We can't create our tables because firebird can't create tables where
> the field name ist equal to the data type name.
>
> Example:
> create table test (TIMESTAMP timestamp NOT NULL);
>
> Can anobody help me?
>
>

create table test ("TIMESTAMP" timestamp NOT NULL);

SEE YOU
aLAN