Question: 1
The user SCOTT who is the owner of ORDERS and ORDER_ITEMS tables issues this GRANT command:
GRANT ALL
ON orders, order_items
TO PUBLIC;
What must be done to fix the statement?
Question: 2
You are designing the structure of a table in which two columns have the specifications:
COMPONENT_ID -- must be able to contain a maximum of 12 alphanumeric characters and must uniquely identify the row
EXECUTION_DATETIME -- contains Century, Year, Month, Day, Hour, Minute, Second to the maximum precision and is used for calculations and comparisons between components.
Which two options define the data types that satisfy these requirements most efficiently? (Choose two.)
Question: 3
You want to display the date for the first Monday of the next month and issue the following command:
What is the outcome?
Question: 4
Which two statements are true regarding the GROUP BY clause in a SQL statement? (Choose two.)
Question: 5
Examine the commands used to create DEPARTMENT_DETAILS and COURSE_DETAILS tables:
You want to generate a list of all department IDs along with any course IDs that may have been assigned to them.
Which SQL statement must you use?