Find the name of those cities with temperature and condition whose condition is either sunny or cloudy but temperature must be greater than 70oF. SELECT city, temperature, condition FROM weather WHERE condition = 'sunny' OR condition = 'cloudy' OR temperature > 70; SELECT city, temperature, condition FROM weather WHERE condition = 'sunny' OR condition = 'cloudy' AND temperature > 70; SELECT city, temperature, condition FROM weather WHERE condition = 'sunny' AND condition = 'cloudy' AND temperature > 70; SELECT city, temperature, condition FROM weather WHERE condition = 'sunny' AND condition = 'cloudy' OR temperature > 70; TRUE ANSWER : ? YOUR ANSWER : ?
Find the names of the countries whose condition is sunny. SELECT country FROM location WHERE city IN (SELECT city FROM weather WHERE condition = sunny'); SELECT country FROM location WHERE city NOT IN (SELECT city FROM weather WHERE condition = 'sunny'); SELECT country FROM location WHERE city UNION (SELECT city FROM weather WHERE condition = 'sunny'); SELECT country FROM location WHERE condition = 'sunny'; TRUE ANSWER : ? YOUR ANSWER : ?
The Microsoft Access wildcards are ____ and ____ . asterisk (*); percent sign (%) underscore(_); question mark (?) percent sign (%); underscore (_) question mark (?); asterisk (*) TRUE ANSWER : ? YOUR ANSWER : ?
The ADD command is used to enter one row of data or to add multiple rows as a result of a query. True False TRUE ANSWER : ? YOUR ANSWER : ?
Indexes can usually be created for both primary and secondary keys. False True TRUE ANSWER : ? YOUR ANSWER : ?
'AS' clause is used in SQL for Selection operation. Rename operation. Projection operation. Join operation. TRUE ANSWER : ? YOUR ANSWER : ?
Find all the cities whose humidity is 89 SELECT city WHERE humidity = 89; SELECT humidity = 89 FROM weather; SELECT city FROM weather; SELECT city FROM weather WHERE humidity = 89; TRUE ANSWER : ? YOUR ANSWER : ?
The FROM SQL clause is used to... specify range for search condition specify what table we are selecting or deleting data FROM specify search condition None of these TRUE ANSWER : ? YOUR ANSWER : ?
The benefits of a standard relational language include which of the following? Applications are not needed All of these Increased dependence on a single vendor Reduced training costs TRUE ANSWER : ? YOUR ANSWER : ?
Find all the cities with temperature, condition and humidity whose humidity is in the range of 63 to 79 SELECT * FROM weather WHERE humidity BETWEEN 63 AND 79 SELECT * FROM weather WHERE humidity IN (63 to 79) SELECT * FROM weather WHERE humidity NOT BETWEEN 63 AND 79 SELECT * FROM weather WHERE humidity NOT IN (63 AND 79) TRUE ANSWER : ? YOUR ANSWER : ?