You have already completed these exercises!
Do you want to take them again?
You completed the POSTGRESQL DROP COLUMN Exercises from W3Schools.com
Share on:
Which one of the following has a correct syntax for removing a column?
DROP COLUMN year FROM cars;
FROM cars DROP COLUMN year;
ALTER TABLE cars DROP COLUMN year;
ALTER COLUMN year FROM cars;