mackenzie_hart Posted November 16, 2005 Share Posted November 16, 2005 hey everyone, sorry to post this question here, this is a general sql stuff, but couldnt post it to php sql forum. anyway, heres the problem: i try to rename field in a table, like this: $query="ALTER TABLE table1 RENAME field1 TO field2"; and that wont work, dont understand where is the problem. other ALTER TABLE stuff works good. but with this i keep get this error message: Warning: odbc_exec() [function.odbc-exec]: SQL error: [Microsoft][ODBC Microsoft Access -driver] Syntax Error in ALTER TABLE., SQL state 37000 in SQLExecDirect in C:\server\test.php on line 7 heres the whole code im using: $conn=odbc_connect('filename','',''); $query="ALTER TABLE table1 RENAME field1 TO field2"; odbc_exec($conn,$query); odbc_close($conn); thanks. mackenzie Link to comment https://forums.phpfreaks.com/topic/2876-alter-table-rename-field/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.