megachangeMega
In this program a temporary table mega is created.
You must write the routine changeMega that adds
a row to the table.
Add the new country 'Neverland' with a population of 10.
The SQL insert command you want is
INSERT INTO mega(name,population> VALUES ('Neverland',1)
A typical SQL delete command is:
DELETE FROM mega WHERE name='Bolivia'
Delete the countries that have been condemned.
The String pops includes changes to be made to the table
mega.
You will need to build and execute update statements such as:
UPDATE mega SET population=9200000 WHERE name='Bolivia'
Update the table according to details given.
Also, remove the println statements.