tranchemontaigne
Registered User.
- Local time
- Today, 13:29
- Joined
- Aug 12, 2008
- Messages
- 203
Is there a way to rename a column in VBSQL? I've tried using Oracle/MySQL syntax without luck. Any help with syntax would be appreciated.
I need to rename a column as part of an update and was hoping to put all of the updates in a code module that could be applied through a function call.
Code:
ALTER TABLE tblTest
RENAME COLUMN MyMemo TO MyMemoRenamed;
I need to rename a column as part of an update and was hoping to put all of the updates in a code module that could be applied through a function call.