Tag: databases
Questions Related to databases
Choose the MANDATORY clauses of SELECT SQL statement
Identify the correct output
select INITCAP('ORACLE BASICS') from dual;
Identify the correct output ---
select CONCAT('ORACLE' || 'BASICS') from dual;
Identify the correct output --- select SUBSTR('ORACLE BASICS',-6,5) from dual;
Identify the correct output --- select TRUNC(TO_DATE('01-SEP-1995', 'DD-MON-YYYY'),'YEAR') from dual;
Identify the correct output --- select ADD_MONTHS(TO_DATE('01-SEP-1995', 'DD-MON-YYYY'), 6) from dual;