Find the name of all cities with their temperature, humidity and countries. SELECT weather.city, temperature, humidity FROM weather SELECT country FROM location WHERE weather.city = location.city; SELECT weather.city, temperature, humidity, country FROM weather, location WHERE weather.city = location.city; SELECT city, temperature, humidity, country FROM location; SELECT weather.city, temperature, humidity, country FROM weather, location; TRUE ANSWER : ? YOUR ANSWER : ?
Which command undo all the updates performed by the SQL in the transaction? TRUNCATE COMMIT DELETE ROLLBACK TRUE ANSWER : ? YOUR ANSWER : ?
Table employee has 10 records. It has a non-NULL SALARY column which is also UNIQUE.The SQL statementSELECT COUNT(*) FROM employee WHERE SALARY > ALL (SELECT SALARY FROM EMPLOYEE);prints 5 9 0 10 TRUE ANSWER : ? YOUR ANSWER : ?
The keyword BETWEEN can be used in a WHERE clause to refer to a range of values. False True TRUE ANSWER : ? YOUR ANSWER : ?
Each index consumes extra storage space and also requires overhead maintenance time whenever indexed data change value. True False TRUE ANSWER : ? YOUR ANSWER : ?
Find the SQL statement below that is equal to the following: SELECT NAME FROM CUSTOMER WHERE STATE = 'VA'; SELECT NAME FROM CUSTOMER WHERE STATE IN ('VA'); SELECT NAME IN CUSTOMER WHERE STATE = 'VA'; SELECT NAME IN CUSTOMER WHERE STATE = 'V'; SELECT NAME IN CUSTOMER WHERE STATE IN ('VA'); TRUE ANSWER : ? YOUR ANSWER : ?
Find the names of the countries whose condition is sunny. SELECT country FROM location WHERE city NOT IN (SELECT city FROM weather WHERE condition = 'sunny'); SELECT country FROM location WHERE city IN (SELECT city FROM weather WHERE condition = sunny'); SELECT country FROM location WHERE condition = 'sunny'; SELECT country FROM location WHERE city UNION (SELECT city FROM weather WHERE condition = 'sunny'); TRUE ANSWER : ? YOUR ANSWER : ?
The command to remove rows from a table 'CUSTOMER' is: DELETE FROM CUSTOMER WHERE ... DROP FROM CUSTOMER ... UPDATE FROM CUSTOMER ... REMOVE FROM CUSTOMER ... TRUE ANSWER : ? YOUR ANSWER : ?
________ was adopted as a national standard by ANSI in 1992. DBase Oracle Microsoft Access SQL TRUE ANSWER : ? YOUR ANSWER : ?