Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

preceding load

hi

     i am new in qlikView .what is the use of preceding load of relational database table in qlikView.

3 Replies
alexandros17
Partner - Champion III
Partner - Champion III

If you mean something like this:

Load

     *;

Select * from myTable;

This type of loading is used to apply Qlik functions to the data loading, infact if I want to use for example Num() function

I can write :

Load

     *, Num(myField) as newField;

Select * from myTable;

nirav_bhimani
Partner - Specialist
Partner - Specialist

Not applicable
Author

In normal load for some aggregation function like min, max, sum we can't use this function directly in load

so use of precedence load to calculate some field for max and min with group by we use precedence load.

precding load.PNG.png

while fetching data from database will find this option as attached image.