ALTER TABLE Statement in SQL
The ALTER TABLE statement in SQL is used to modify an existing table’s structure. It allows you to add, delete, or modify columns, as well as change constraints and other properties of a table.
Syntax for ALTER TABLE
ALTER TABLE table_name
ADD/MODIF...
codewithsimon.hashnode.dev3 min read