Problem Statement:
Query all columns for a city in the CITY table with the ID 1661.
Link: HackerRank - Select by ID
Solution:
SELECT * FROM CITY WHERE ID = 1661;
Explanation:
-
SELECT *
: The asterisk (*) is a wildcard character in SQL that means "all columns." This part of the query specifies that you want to retrieve all columns from the table. -
FROM CITY
: Indicates that you are selecting data from the CITY table. -
WHERE ID = 1661
: This condition filters the rows to include only the city with the specificID
of 1661.
This query will return all the columns for the row in the CITY table where the ID
is 1661. It's useful when you need to retrieve all details about a specific city identified by its unique ID.
By running this query, you can see all the attributes (such as city name, country code, population, etc.) for the city that has the ID of 1661.
Top comments (0)