"Learn how to remove a column from a table in SQL using the ALTER TABLE command. This tutorial drops the email column from the persons table.
Command:
SELECT * FROM persons; ALTER TABLE persons DROP COLUMN email; SELECT * FROM persons;
#SQL #DropColumn #LearnSQL #SQLCommands #SQLTips