Multiple choice technology databases Which SELECT statement will get the result 'elloworld' from the string 'HelloWorld'? SELECT SUBSTR ('HelloWorld',1) FROM dual; SELECT LOWER (TRIM ('H' FROM 'Hello World')) FROM dual SELECT LOWER (SUBSTR('HellowWorld', 2,1) FROM dual SELECT INITCAP(TRIM('HellowWorld', 1,1) FROM dual Reveal answer Fill a bubble to check yourself B Correct answer