G Guest Aug 17, 2006 #1 How do I delete a table column by using a query, not in table view(design or othewise). I want to put this query in a macro. Thanks
How do I delete a table column by using a query, not in table view(design or othewise). I want to put this query in a macro. Thanks
A Allen Browne Aug 17, 2006 #2 RunSql on a query statement like this: ALTER TABLE [MyTable] DROP COLUMN [MyField]; -- Allen Browne - Microsoft MVP. Perth, Western Australia. Reply to group, rather than allenbrowne at mvps dot org. message news:[email protected]...
RunSql on a query statement like this: ALTER TABLE [MyTable] DROP COLUMN [MyField]; -- Allen Browne - Microsoft MVP. Perth, Western Australia. Reply to group, rather than allenbrowne at mvps dot org. message news:[email protected]...
R Rick B Aug 17, 2006 #3 Not sure you can. Why would you want a query to modify your table design - especially to delete a column?
Not sure you can. Why would you want a query to modify your table design - especially to delete a column?