Could you please tell me the advantage of LOAD ... SQL SELECT and when we need to use this?
Is that we can use the QlikView functions in the LOAD and Database functions in the SQL SELECT part as LOAD would manipulate in QlikView and SQL SELECT would manipulate in database.? Is this correct.
Example:
LOAD floor(date(CREATION_TS)) as TS, ....
SQL SELECT MAX(CREATION_TS) FROM sample.
The order of the LOAD and SQL SELECT can differ?correct?