create database countryinfo;
use countryinfo;
create table country(countryname varchar(15),countrycapital varchar(15));
 show tables;