ALTER ADD COLUMNS
Function
This command is used to add columns to an existing table.
Syntax
ALTER TABLE tableIdentifier ADD COLUMNS(colAndType (,colAndType)*)
Parameter Description
Parameter |
Description |
---|---|
tableIdentifier |
Table name. |
colAndType |
Name of a comma-separated column with data types and optional default values. A column name consists of letters, digits, and underscores (_). |
Examples
alter table h0_1 add columns(ext0 string); alter table h0_1 add columns(ext1 string default 'ext1_default_value');
System Response
The columns are added to the table. You can run the DESCRIBE command to display the columns.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot