I have a query that essentially sums a number column, and this query can take a very long time to execute. I'm curious what the result of the query will be if rows are deleted or added during execution of the query.
The answer depends on how Oracle executes queries. Does it query a snapshot of the DB at the point of execution of the query, or does it account for live data changes?
Thanks in advance!