Select All in SQL | HackerRank Solution

Hello coders, today we are going to solve Select All Hacker Rank Solution in SQL.

Select All in SQL

Problem

Query all columns (attributes) for every row in the CITY table.

The CITY table is described as follows:

FieldType
IDNUMBER
NAMEVARCHAR2(17)
COUNTRYCODEVARCHAR2(3)
DISTRICTVARCHAR2(20)
POPULATIONNUMBER

Solution – Select All in SQL

SELECT * FROM CITY;

Disclaimer: The above Problem (Select All) is generated by Hacker Rank but the Solution is provided by CodingBroz. This tutorial is only for Educational and Learning Purpose.

Leave a Comment

Your email address will not be published. Required fields are marked *