result

Loads the query result being executed in the current session.

Syntax

result [offset=INT] QUERY_ID
Required Parameter
QUERY_ID
ID of the query to load the result. You can see the query ID using system queries.
Optional Parameter
offset=INT
Number of records to skip (default: 0).

Usage

  1. Load query result of the query #616.

    result 616
    
  2. Load query results of the query #616 after skipping 10 of them.

    result offset=10 616