Select By ID
Last updated
Last updated
Query all columns for a city in CITY with the ID 1661
.
The CITY table is described as follows:
Solution:
SELECT * FROM CITY WHERE ID = 1661;
Explanation:
SELECT * : This part of the query indicates that we want to retrieve all columns from the CITY table.
FROM CITY : This specifies the table from which we want to retrieve the data, which is the CITY table.
WHERE ID = 1661 : This is a condition added to the query using the WHERE clause. It filters the rows in the CITY table so that only rows where the value in the ID column is equal to 1661 are included in the result.