For a simple select query like select column_name from table_name
on a very large table, is it possible to have the output being provided as the scan of the table progresses?
If I abort the command after sometime, I expect to get output from the select at least thus far.
Think cat
, which I believe won't wait till it completes the full read of the file.
Does MySQL or other RDBMS systems support this?