Select All data of a table

Author: Al-mamun Sarkar Date: 2020-03-26 15:03:16

Select All data of a table. Show all data from the city table. This is the solution of the HackerRank Select All SQL problem.

 

Table Name: CITY 

Table structure:

Field Type
ID NUMBER
NAME VARCHAR
COUNTRYCODE VARCHAR
DISTRICT VARCHA
POPULATION NUMBER

 

SQL Query:

SELECT * FROM CITY;