Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
ioannagr
Creator III
Creator III

Load data from table from Mysql in parts in SELECT

Hi all.

I was thinking to load data from a very big table from MySql db in parts in SELECT part.

So I have

LOAD pk from Table1;

INNER JOIN

LOAD pk as pk;

SQL SELECT pk, year from Table2

where year='2020'

UNION ALL

SELECT pk, year from Table2

where year='2021';

 

 

Would something like that work? How do i do it with a loop in the SQL SELECT part?

0 Replies