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

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

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;
SELECT city, temperature FROM weather ORDER BY city;
SELECT city, temperature FROM weather ORDER BY temperature;

ANSWER DOWNLOAD EXAMIANS APP