Subject Re: Firebird 1 problem
Author Aage Johansen
Marv Cook wrote:
> I find that I have used 'First' as a column name. Firebird 1.0 considers
> that a reserved word. What is the easiest way to change it in a operational
> environment?
>


Try:
alter table THETABLE
alter "First" to FIRST_NAME;
You will probably have to use correct upper/lower case for the old field name.


Regards,
Aage J.