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

Query all columns (attributes) for every row in the CITY table. Input FormatThe CITY table is described as follows:

Ansewer

      select * from CITY;

Explanation

The SELECT statement is used to retrieve records from one or more tables in your SQL database. If we want to retrieve all data, use * ( The asterisk or star symbol ( * ) means all columns).