Question 151
Which three statements are true about GLOBAL TEMPORARY TABLES?
Question 152
Examine this description of the PRODUCTStable:

Rows exist in this table with data in all the columns. You put the PRODUCTStable in read-only mode.
Which three commands execute successfully on PRODUCTS? (Choose three.)
DROP TABLE products;

Rows exist in this table with data in all the columns. You put the PRODUCTStable in read-only mode.
Which three commands execute successfully on PRODUCTS? (Choose three.)
DROP TABLE products;
Question 153
View the exhibit and examine the structure of the SALES, CUSTOMERS, PRODUCTS and TIMES tables.
The PROD_ID column is the foreign key in the SALES table referencing the PRODUCTS table.
The CUST_ID and TIME_ID columns are also foreign keys in the SALES table referencing the CUSTOMERS and TIMES tables, respectively.
Examine this command:
CREATE TABLE new_sales (prod_id, cust_id, order_date DEFAULT SYSDATE)
AS
SELECT prod_id, cust_id, time_id
FROM sales;
Which statement is true?
The PROD_ID column is the foreign key in the SALES table referencing the PRODUCTS table.
The CUST_ID and TIME_ID columns are also foreign keys in the SALES table referencing the CUSTOMERS and TIMES tables, respectively.
Examine this command:
CREATE TABLE new_sales (prod_id, cust_id, order_date DEFAULT SYSDATE)
AS
SELECT prod_id, cust_id, time_id
FROM sales;
Which statement is true?
Question 154
Which three statements are true about Data Manipulation Language (DML)? (Choose three.)
Question 155
The CUSTOMERStable has a CUST_CREDIT_LIMITcolumn of data type NUMBER.
Which two queries execute successfully? (Choose two.)
Which two queries execute successfully? (Choose two.)
