S
Stevio
I have a table called COLUMN (not a good name I know).
Insert into and delete from SQL statements work fine with the table,
however, when I try to add a column to the table using the following code:
"ALTER TABLE COLUMN ADD IS_DEFAULT YESNO NOT NULL"
I get the following error;
"[Microsoft][ODBC Microsoft Access Driver] Syntax error in ALTER TABLE
statement."
Is there a way of doing this in SQL for this table called COLUMN?
Alternatively, can I use an SQL statement to rename the table?
The statement "RENAME TABLE COLUMN TO ACOLUMN" gives the error:
"Invalid SQL statement; expected 'DELETE', 'INSERT', 'PROCEDURE', 'SELECT',
or 'UPDATE'."
Thanks,
Stephen
Insert into and delete from SQL statements work fine with the table,
however, when I try to add a column to the table using the following code:
"ALTER TABLE COLUMN ADD IS_DEFAULT YESNO NOT NULL"
I get the following error;
"[Microsoft][ODBC Microsoft Access Driver] Syntax error in ALTER TABLE
statement."
Is there a way of doing this in SQL for this table called COLUMN?
Alternatively, can I use an SQL statement to rename the table?
The statement "RENAME TABLE COLUMN TO ACOLUMN" gives the error:
"Invalid SQL statement; expected 'DELETE', 'INSERT', 'PROCEDURE', 'SELECT',
or 'UPDATE'."
Thanks,
Stephen