SQL Alter Table
The SQL ALTER TABLE command is used to add, remove or modify columns in an existing table. You should also use the ALTER TABLE command to add and reduce various constraints to the existing table. ALTER TABLE – ADD Column To add a column in a table, use the following syntax: Syntax ALTER TABLE tablename ADD columnname datatype; Example ALTER TABLE Students ADD City…
View On WordPress










