Introduction to SQL
The SQL -92 wildcards are ____ and ____ .

underscore(_); question mark (?)
percent sign (%); underscore (_)
question mark (?); asterisk (*)
asterisk (*); percent sign (%)

ANSWER DOWNLOAD EXAMIANS APP

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

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

ANSWER DOWNLOAD EXAMIANS APP