Você precisa aplicar
ROWNUM
depois O Oracle descobre quais linhas retornar. A única maneira confiável é esta:SELECT * FROM (
Select distinct a.id
from table1 a, table b
where ( a.id= b.id or a.id = b.secondid )
) WHERE ROWNUM < 200;
ROWNUM
depois O Oracle descobre quais linhas retornar. A única maneira confiável é esta:SELECT * FROM (
Select distinct a.id
from table1 a, table b
where ( a.id= b.id or a.id = b.secondid )
) WHERE ROWNUM < 200;