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).

Brijpal Sharma is a web developer with a passion for writing tech tutorials. Learn JavaScript and other web development technology.