ALTER TABLE
Using the ALTER TABLE command, you can modify the columns and additional parameters of row and column tables. Multiple actions can be specified in a single command. Generally, the ALTER TABLE command looks like this:
ALTER TABLE table_name action1, action2, ..., actionN;
An action is any modification to the table, as described below:
-
Managing columns of row and column tables.
-
Adding or removing a changefeed.
-
Managing indexes.
-
Managing column groups of a row table.
-
Modifying additional table parameters.
Was the article helpful?
Previous
Next