lets say we have table as
with table1
as
(
select 'CS issue-result info' col1
from dual
union all
select 'ITP decile info' col1
from dual
union all
select 'DFSD fdb-quentile-info' col1
from dual
union all
select 'EUR transcription info' col1
from dual
union all
select 'ABPK stability control info' col1
from dual
)
select *
from table1;
i.e. enter image description here
my expected output is as below
col1
issue-result info
decile info
fdb-quentile-info
transcription info
stability control info
condition : from the string preceding part of first space should be removed