MultipleChoice
Evaluate the following SQL statement:
SQL> select cust_id, cust_last_name 'Last name'
FROM customers
WHERE country_id = 10
UNION
SELECT cust_id CUST_NO, cust_last_name
FROM customers
WHERE country_id = 30
Identify three ORDER BY clauses either one of which can complete the query. (Choose three.)
OptionsMultipleChoice
Which two statements are true about the WHERE and HAVING clauses in a SELECT statement?
OptionsMultipleChoice
The INVOICE table has a QTY_SOLD column of data type NUMBER and an INVOICE_DATE column of data type DATE NLS_DATE_FORMAT is set to DD-MON-RR.
Which two are true about data type conversions involving these columns in query expressions?
OptionsMultipleChoice
Examine the description of the PRODUCTS table:
Which three queries use valid expressions?
OptionsMultipleChoice
Examine the structure of the two tables.
Which two queries execute successfully? (Choose two.)
OptionsMultipleChoice
Which three actions can you perform on an existing table containing data? (Choose three.)
OptionsMultipleChoice
Which three are true about granting object privileges on tables, views, and sequences?
OptionsMultipleChoice
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 of the week Which query can be used?
OptionsMultipleChoice
Choose the best answer.
Examine the description of the EMPLOYEES table:
Which query is valid?
OptionsMultipleChoice
Which three are true about the CREATE TABLE command?
Options