
What is alter table statement in sql? Can u please show me an example of SQL Alter Table??
Thanks!

ALTER TABLE Statement: It allows to rename the existing table. Apart from it... the statement can also be used to modifiy, add or deleate a column in the existing table.
SQL Alter Table Query Syntax:
- Rename Table:
ALTER TABLE suppliers
RENAME TO vendors;
- Add Column
ALTER TABLE supplier
ADD ( supplier_name varchar2(50),
city varchar2(45) );
- Modifiy Column
ALTER TABLE supplier
MODIFY ( supplier_name varchar2(100) not null,
city varchar2(75) );
- Drop Column
ALTER TABLE supplier
DROP COLUMN supplier_name;