Может быть что-то вроде этого?
select REGEXP_SUBSTR(col,'a href="(.*?)"',1,level,null,1) as url
from t
connect by level<=REGEXP_COUNT(col,'a href="(.*?)"')
and prior id = id --add these 2 lines to extract from multiple
and prior sys_guid() is not null; --rows in a table where id is the primary key.
Демо