Is it possible to add multiple columns in a single Alter query in Redshift
Alter table employee add column Name, add column Age, add column Salary
Is it possible to add multiple columns in a single Alter query in Redshift
Alter table employee add column Name, add column Age, add column Salary
According to Redshift Documentation, You can add only one column in each ALTER TABLE statement. Only way to add multiple columns is executing multiple ALTER TABLE statements.
We have to use multiple ALTER TABLE statements.
© 2022 - 2024 — McMap. All rights reserved.