Select All

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

The CITY table is described as follows:

Solution:

SELECT * FROM CITY;

Explanation:

This query retrieves all columns from the CITY table, fetching all the data stored in that table without any conditions or filters applied.

Last updated