Introduction to SQL
A subquery in an SQL SELECT statement:

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

ANSWER DOWNLOAD EXAMIANS APP

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

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

ANSWER DOWNLOAD EXAMIANS APP

Introduction to SQL
NULL is

not a value
the same as blank for character
the same as 0 for integer
the same as 0 for integer and blank for character

ANSWER DOWNLOAD EXAMIANS APP