单选题 QUESTION 192 Choose the best answer. Examine the data in the PRODUCTS table: PROD_ID PROD_NAME PROD_LIST CATEGORY_ID -------------------------------------------------------------------------------------101 Plate 10 1 102 Cup 20 1 103 Saucer 20 1 104 Knife 30 1 105 Fork 30 1 Examine these queries: 1. SELECT prod_ name, prod_list FROM products WHERE prod_list = ANY ( 10 , 20) AND category_id = 1 ; 2.SELECT prod_ name, prod_list FROM products WHERE prod_list IN ( 10 , 20) AND category_id = 1 ; 3.SELECT prod_name, prod_list FROM products WHERE prod_list = ALL ( 10 , 20) AND Category_ id = 1 ; Which queries generate the same output?
相关试题
单选题 QUESTION 18 Which is the default column or columns for sorting output from compound queries using SET operators such as INTERSECT in a SQL statement?
单选题 QUESTION 40 The EMPLOYEES table contains columns EMP_ID of data type NUMBER and HIRE_DATE of data type DATE. You want to display the date of the first Monday after the completion of six months since hiring. The NLS_TERRITORY parameter is set to AMERICA in the session and , therefore, Sunday is the first day on the wee. Which query can be used?
单选题 QUESTION 43 Examine the description of the SALES1 table: SALES2 is a table with the same description as SALES1 . Some sales data is duplicated in both tables. You want to display the rows from the SALES1 table which are not present in the SALES2 table. Which set operator generates the required output?
单选题 QUESTION 44 Your database instance is started with a PFILE. Examine these parameters: You want to increase the size of the buffer cache. Free memory is available to increase the size of the buffer cache. You execute the command: SQL> ALTER SYSTEM SET DB_CACHE_SIZE= 10 24 M; What is the Outcome?
单选题 QUESTION 1 1 NLS_DATE FORMAT is set to DD-MON-YY. Which query requires explicit data type conversion?
单选题 QUESTION 28 Examine the description of the PRODUCTS table: Which query is valid?
单选题 QUESTION 9 What is true about non-equijoin statement performance?
单选题 QUESTION 47 Your database instance is started by using a server parameter file (SPFILE) . You execute the following command to change the value of the LOG_BUFFER initialization parameter: ALTER SYSTEM SET LOG_ BUFFER= 32M; What is the outcome of this command?