............. joins two or more tables based on a specified column value not equaling a specified column value in another table. NON-EQUIJOIN NATURAL JOIN OUTER JOIN EQUIJOIN TRUE ANSWER : ? YOUR ANSWER : ?
Find the name of cities with all entries whose temperature is in the range of 71 and 89 SELECT * FROM weather WHERE temperature NOT IN (71 to 89); SELECT * FROM weather WHERE temperature NOT BETWEEN 71 to 89; SELECT * FROM weather WHERE temperature NOT IN (71 and 89); SELECT * FROM weather WHERE temperature BETWEEN 71 AND 89; TRUE ANSWER : ? YOUR ANSWER : ?
The SQL keyword(s) ________ is used with wildcards. NOT IN only LIKE only IN only IN and NOT IN TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following is illegal? None of these SELECT SYSDATE - (SYSDATE + 2) FROM DUAL; SELECT SYSDATE - SYSDATE FROM DUAL; SELECT SYSDATE - (SYSDATE - 2) FROM DUAL; TRUE ANSWER : ? YOUR ANSWER : ?
In an SQL SELECT statement querying a single table, according to the SQL-92 standard the asterisk (*) means that: all records with even partial criteria met are to be returned. None of these all columns of the table are to be returned. all records meeting the full criteria are to be returned. TRUE ANSWER : ? YOUR ANSWER : ?
The FROM SQL clause is used to... specify search condition specify range for search condition specify what table we are selecting or deleting data FROM None of these TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following must be enclosed in double quotes? Column Alias All of these Dates Strings TRUE ANSWER : ? YOUR ANSWER : ?
SQL data definition commands make up a(n) ________ . XML HTML DML DDL 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 : ?