Subject Re: [ib-support] Add a column after a specific field on existing tables
Author Paul Vinkenoog
Hi Kevin,

> Is there a way to specify the column position for a new column
> added to an existing table.

AFAIK, there is no way to specify the position when you add the column
(I wonder why), but this always works:

ALTER TABLE <table> ADD <column> <datatype>

followed by

ALTER TABLE <table> ALTER <column> POSITION <1-based no.>


Greetings,
Paul Vinkenoog