I want to insert a new column after a specific column in a table. The database is used online, and I must use a query statement to alter the table. I have the syntax which will add a column to the database, but I want to take it one step further. I want to put the new column in a certain place in the table structure -- not just make it the last column in the table. Is this possible in Access?
The following code works -- adds the column. How do I change it to specify exactly where the new column should go?
MrsBean
The following code works -- adds the column. How do I change it to specify exactly where the new column should go?
Code:
ALTER TABLE table_order add column cc_cvs integer
MrsBean