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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Kohli
Creator II
Creator II

Fetch limited data from the source

Iam using SQL database as a source. i have data from 1-Jan to 31-Dec.  I want upload data only from 1-March to 30-Nov. please give me suggest, how can i fetch..

Labels (1)
1 Reply
Marco
Partner - Contributor III
Partner - Contributor III

Hi,
use "where condition":
LOAD *;
SQL SELECT *
from Table
Where data>=1-March and data <= 30-Nov;