
select * from country;
insert into country values('India','Delhi');
insert into country (countryname) values('Norway');
select * from country;

delete from country where countryname='Norway';
select * from country;
