create table customer(id number(5),name varchar(7),post varchar(6)); insert into customer values(001,'ammu','hr'); insert into customer values(002,'anu','manager'); alter table customer add age number(2); select*from customer; update customer set age=30 where id=001;
To embed this program on your website, copy the following code and paste it into your website's HTML: