Select the suitable option for fetching the output of the following query. select substr("Oracle World",1,6) from dual;
Answer options
A
Oracle
B
World
C
Oracle W
D
racle W
Correct answer: Oracle
Explanation
SUBSTR('Oracle World', 1, 6) starts at position 1 and takes 6 characters = 'Oracle'.