Hi @StewartBW ,
The SQL syntax ALTER TABLE xc RENAME COLUMN old TO new
is not supported directly by Access SQL.
If the column order is crucial for your application, and you absolutely need the new column to be in the same position as the old one, you'll need to:
- Create a new table with the desired column order.
- Copy the data from the old table to the new table.
- Drop the old table.
- Rename the new table to the original table name.
Best Regards.
Jiachen Li
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.