SyntaxFix
Write A Post
Hire A Developer
Questions
With REGEXP_SUBSTR is as simple as:
SELECT REGEXP_SUBSTR(t.column_one, '[^ ]+', 1, 1) col_one, REGEXP_SUBSTR(t.column_one, '[^ ]+', 1, 2) col_two FROM YOUR_TABLE t;