Create a Population Database app that will create a Java DBdatabase named CityDB. The CityDBdatabase willhave a table called City, with the following columns:
Column Name
Data Type
CityName
CHAR (50) Primary Key
Population
DOUBLE
The CityName column stores the name of a city and thePopulation column stores the current population of that city. Usethe Internet to locate accurate and up to date data points, such asthe US Census. Create at least 10 cities and their populations.Remember to use int for the population column type so youcan easily perform math and other common methods for manipulatingnumeric type data.
Write a Java app that connects to the database and
OR
OR