The SYSDATE function displays the current Oracle Server date as: 5/21/2019 You wish to display the date as: MONDAY, 21 MAY, 2019 Which statement will do this? A. SELECT TO_DATE(SYSDATE, ‘FMDAY, DD MONTH, YYYY’) FROM DUAL; B. SELECT TO_CHAR(SYSDATE, ‘FMDD,…

Which two are true about savepoints? (Choose two.) A. After issuing a savepoints, you can roll back to the savepoint name within the current transaction. B. A ROLLBACK TO SAVEPOINT command issued before the start of a transaction results in…

Table ORDER_ITEMS contains columns ORDER_TO, UNIT_PRICE and QUANTITY, of data type NUMBER. Examine these SQL statements: Statement 1: Statement 2: Which two statements are true? (Choose two.) A. Statement 2 may return multiple rows of output. B. Both statements will…

Examine the description of the PROMOTIONS table: You want to display the unique promotion costs in each promotion category. Which two queries can be used? (Choose two.) A. SELECT DISTINCT promo_category || ‘ has ‘ || promo_cost AS COSTS FROM…