Hmmmm . . Pokud chcete libovolné, můžete použít boční spojení adresa spíše než náhodná adresa:
select t1.*, t2.*
from table1 t1 left join lateral
(select t2.*
from table2 t2
where t2.company_number = t1.company_number and rownum = 1
) t2
on 1=1;
Pokud skutečně chcete náhodnou adresu, která je stejná pro každé číslo společnosti, můžete použít:
select t1.*, t2.*
from table1 t1 left join lateral
(select t2.*,
row_number() over (partition by company_number order by dbms_random.random) as seqnum
from table2 t2
) t2
on t2.company_number = t1.company_number and
seqnum = 1;
Zde je db<>hulba ilustrující, že syntaxe funguje.