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 0 10 9 TRUE ANSWER : ? YOUR ANSWER : ?
If you are going to use a combination of three or more AND and OR conditions, it is often easier to use the NOT and NOT IN operators. False True 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 IN ('VA'); SELECT NAME IN CUSTOMER WHERE STATE = 'V'; SELECT NAME IN CUSTOMER WHERE STATE = 'VA'; TRUE ANSWER : ? YOUR ANSWER : ?
SUM, AVG, MIN, and MAX can only be used with numeric columns. True False TRUE ANSWER : ? YOUR ANSWER : ?
The result of a SQL SELECT statement is a(n) ________ . table report form file TRUE ANSWER : ? YOUR ANSWER : ?
What is a view? A view is a special stored procedure executed when certain event occurs. A view is a virtual table which results of executing a pre-compiled query. A view is not part of the physical database schema, while the regular tables are. None of these A view is a database diagram. TRUE ANSWER : ? YOUR ANSWER : ?
The condition in a WHERE clause can refer to only one value. True False TRUE ANSWER : ? YOUR ANSWER : ?
The FROM SQL clause is used to... None of these specify search condition specify what table we are selecting or deleting data FROM specify range for search condition TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following join is also called as an 'inner-join'? Non-Equijoin None of these Equijoin Self-Join 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 and 89); SELECT * FROM weather WHERE temperature NOT IN (71 to 89); SELECT * FROM weather WHERE temperature BETWEEN 71 AND 89; SELECT * FROM weather WHERE temperature NOT BETWEEN 71 to 89; TRUE ANSWER : ? YOUR ANSWER : ?