I have a question on fetch first x rows. Does this function execute after all the joins have been completed for all the rows in a table or does it return the result as soon as it hits the number ? eg: Table a has 100k rows table b has 72k rows
query is a inner join b fetch first 1000 rows.
will it show the result as soon as it hits 1000 rows after join or does it join all the rows before it only shows a portion of the results?