I am trying to use the alter column command in a sql statement to rename a column in an Access table.
DoCmd.RunSQL = "ALTER TABLE theTable ALTER COLUMN F2 TO studentName"
I get an error when running this statement (syntax error) Is the code correct and if so I have been surfing trying to find answers to this problem, can I use the ALTER COLUMN command in ACCESS
DoCmd.RunSQL = "ALTER TABLE theTable ALTER COLUMN F2 TO studentName"
I get an error when running this statement (syntax error) Is the code correct and if so I have been surfing trying to find answers to this problem, can I use the ALTER COLUMN command in ACCESS