Algorithm


Problem Name: Sql - Select All

Problem Link: https://www.hackerrank.com/challenges/select-all-sql/problem?isFullScreen=true

In this HackerRank Functions in SQL problem solution,

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

The CITY table is described as follows:
CITY.jpg

 

 

Code Examples

#1 Code Example with SQL

Code - SQL


SELECT * FROM CITY;
Copy The Code & Try With Live Editor
Advertisements

Demonstration


Previous
[Solved] Revising the Select Query II in SQL solution in Hackerrank
Next
[Solved] Select By ID in SQL solution in Hackerrank