What are the limitations of alter command?- ALTER Command supports only the RENAME TABLE and ADD COLUMN variants. - Other kinds of ALTER TABLE operations such as DROP COLUMN, ALTER COLUMN, ADD CONSTRAINT are omitted. - Column can’t be deleted with alter command. - Column can’t be renamed a column. - Column can’t be added in between of the existing columns. - When a column is added, it will be added at the end of the table.
|