how to drop a column
-
Can anyone Please tell me what is the command to drop a particular column from a table OR alter a table. Does it require that the table has no data while dropping a column ?
-
Can anyone Please tell me what is the command to drop a particular column from a table OR alter a table. Does it require that the table has no data while dropping a column ?
Try this:
ArchaBhandare wrote:
Can anyone Please tell me what is the command to drop a particular column from a table.
ALTER TABLE tableName DROP COLUMN columnName.
ArchaBhandare wrote:
Does it require that the table has no data while dropping a column ?
No, it can have data...
Regards, Arun Kumar.A
-
Can anyone Please tell me what is the command to drop a particular column from a table OR alter a table. Does it require that the table has no data while dropping a column ?