I have a select query in Postgres with SPLIT_PART()
function which works fine in postgres
SELECT SPLIT_PART(totalscore, '_', 1) highlow,
SPLIT_PART(totalscore, '_', 2) score,
score_desc
FROM student_score
WHERE (totalscore LIKE 'HN%' OR totalscore LIKE 'LN%')
http://sqlfiddle.com/#!15/877966/4
The SPLIT_PART()
is not working in Oracle
Could please let me know how to achieve the same in Oracle as SPLIT_PART()
is not working .