Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
How should the SPLIT_TO_TABLE(<string>, <delimiter>) function be called?
SPLIT_TO_TABLE(<string>, <delimiter>)
A
SELECT SPLIT_TO_TABLE(COL1, '.') FROM DUAL;
B
SELECT SPLIT_TO_TABLE('a.b.c', '.');
C
SELECT * FROM TABLE(SPLIT_TO_TABLE('a.b.c', '.'));
D
SELECT * FROM SPLIT_TO_TABLE('a.b.c', '.');