PopSQL
Changing a column name in Redshift involves using the ALTER TABLE command:
ALTER TABLE
ALTER TABLE products RENAME COLUMN product_name TO product_full_name;
Spread the word