Which SQL statement is used to delete data FROM a database? COLLAPSE DELETE ALTER REMOVE TRUE ANSWER : ? YOUR ANSWER : ?
ON UPDATE CASCADE ensures which of the following? All of these Normalization Materialized Views Data Integrity TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following sorts rows in SQL? ALIGN BY SORT BY ORDER BY GROUP BY TRUE ANSWER : ? YOUR ANSWER : ?
Which is the subset of SQL commands used to manipulate Oracle Database structures, including tables? Data Manipulation Language(DML) None Data Definition Language(DDL) Both of above TRUE ANSWER : ? YOUR ANSWER : ?
The format SELECT-FROM-WHERE is the fundamental framework of SQL SELECT statements. False True TRUE ANSWER : ? YOUR ANSWER : ?
Find all the cities whose humidity is 89 SELECT city WHERE humidity = 89; SELECT city FROM weather; SELECT humidity = 89 FROM weather; SELECT city FROM weather WHERE humidity = 89; TRUE ANSWER : ? YOUR ANSWER : ?
If a query involves NOT, AND, OR with no parenthesis AND will be evaluated first; OR will be evaluated second; NOT will be evaluated last. The order of occurrence determines the order of evaluation. NOT will be evaluated first; OR will be evaluated second; AND will be evaluated last. NOT will be evaluated first; AND will be evaluated second; OR will be evaluated last. 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 : ?
The HAVING clause acts like a WHERE clause, but it identifies groups that meet a criterion, rather than rows. False True TRUE ANSWER : ? YOUR ANSWER : ?
SQL provides five built-in functions: COUNT, SUM, AVG, MAX, MIN. True False TRUE ANSWER : ? YOUR ANSWER : ?