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
2009-12-07 13:22:59
And, of course, concern yourself with any relatonships or indexes based on those columns.
Tony Toews
2009-12-07 21:46:23