ORACLE: - In the table, the first names are as follows
Binda E Reven O Drew J ANDAL J WILL Lee Chad Hardee
I want to select First names in the following format
Binda Reven Drew ANDAL WILL Chad
I use the following query but no luck
SELECT first_name, SUBSTR(first_name, REGEXP_INSTR('first_name','[^ ]+', 1, 1) ) FROM contact.user_names
Please offer.
source share