I have an Access database with almost 200 tables. I would like to rename the fields of many of these (to make it easier when I analyze the data in R). I've discovered that you can't simply rename fields in Access, but have to do it the hard way of adding a new column, transferring data, then dropping the old column.
Is there a way to do this for multiple tables (or multiple tables and columns) at once using SQL?
I tried this:
ALTER TABLE * FROM MSysObjects ADD COLUMN colname NUMBER
as well as this:
ALTER TABLE table1, table2, table3... ADD COLUMN colname NUMBER
but neither seem to work.
Is this possible at all? Does anyone know how to code this?