views:

52

answers:

1

in ms-access, how to write a query / DDL to change multiple column names with a single query.

+2  A: 

You have to create a new table, copy data, drop old table

ALTER TABLE does not support multiple ...ALTER COLUMN clauses

You could ADD multiple columns on one go, populate then, then drop the old columns. Multiple ADDs are supported.

gbn
And, of course, concern yourself with any relatonships or indexes based on those columns.
Tony Toews