Results 1 to 4 of 4
Thread: Duplicate table
- 01-09-2010, 07:58 AM #1
Member
- Join Date
- Oct 2009
- Posts
- 88
- Rep Power
- 0
- 01-09-2010, 10:59 AM #2
Member
- Join Date
- Jan 2010
- Location
- D-Munich
- Posts
- 7
- Rep Power
- 0
Which RDBMS you have?An how to rename a column name of database table query plz
For Oracle it would be this:
Java Code:ALTER TABLE mytable RENAME COLUMN col1 TO col2;
- 01-09-2010, 11:01 AM #3
Member
- Join Date
- Oct 2009
- Posts
- 88
- Rep Power
- 0
i am using MS-ACCESS
- 01-09-2010, 11:17 AM #4
Member
- Join Date
- Jan 2010
- Location
- D-Munich
- Posts
- 7
- Rep Power
- 0
Below is the syntax for the alter table statement borrowed from Microsoft Access 2003 help system.
The ALTER TABLE statement has these parts:Java Code:ALTER TABLE table {ADD {COLUMN field type[(size)] [NOT NULL] [CONSTRAINT index] | ALTER COLUMN field type[(size)] | CONSTRAINT multifieldindex} | DROP {COLUMN field I CONSTRAINT indexname} }
Part Description
table The name of the table to be altered.
field The name of the field to be added to or deleted from table. Or, the name of the field to be altered in table.
type The data type of field.
size The field size in characters (Text and Binary fields only).
index The index for field.
multifieldindex The definition of a multiple-field index to be added to table.
indexname The name of the multiple-field index to be removed.
It seems that it isn't possible to rename am an existing column. For that reason you should add a new column, copy the data, then delete the original column.
Hth and good luck
Similar Threads
-
How to repaint.refresh the table (table model) with combo box selection envent
By man4ish in forum AWT / SwingReplies: 1Last Post: 01-08-2010, 06:19 AM -
Duplicate Input Boxes
By habester in forum New To JavaReplies: 3Last Post: 11-09-2009, 06:13 PM -
Duplicate XML decleration
By gyl2009 in forum XMLReplies: 0Last Post: 03-11-2009, 05:13 PM -
Duplicate Files Remover
By caps_lock in forum New To JavaReplies: 0Last Post: 01-05-2009, 01:31 AM -
random string are duplicate
By googgoo in forum New To JavaReplies: 3Last Post: 04-03-2008, 10:01 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks