Introduction to SQL
A subquery in an SQL SELECT statement:

can always be duplicated by a join.
can only be used with two tables.
has a distinct form that cannot be duplicated by a join.
cannot have its results sorted using ORDER BY.

ANSWER DOWNLOAD EXAMIANS APP

Introduction to SQL
Find the temperature in increasing order of all cities

SELECT city, temperature FROM weather ORDER BY temperature;
SELECT city, temperature FROM weather ORDER BY city;
SELECT city, temperature FROM weather;
SELECT city FROM weather ORDER BY temperature;

ANSWER DOWNLOAD EXAMIANS APP