SQL ALTER TABLE StatementThe SQL ALTER TABLE command is used to modify the definition (structure) of a table by modifying the definition of its columns. The ALTER command is used to perform the following functions.1) Add, drop, modify table columns2) Add and drop constraints3) Enable and Disable constraintsSyntax to add a columnALTER TABLE table_name...