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

Announcements
Congratulations to the new Qlik Luminary and Partner Ambassador class! Meet them here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to limit data during first load?

Hi,

I have this instance that from database, the data I will fetching is more than million of records, and in order to limit the data, I want only to load date that is equal or greater than April 1, 2012

So, this is the syntax:

Load ID,

        DOCDATE,

        ITEMNO;

SQL Select * from TABLE where DOCDATE >= '4/1/2012';

Is that possible? Say that I am connected to the database that is why I used SQL Select

Thanks for your help!

Regards,

Bill

Labels (1)
3 Replies
rwunderlich
MVP
MVP

Yes, that is possible. The format of the date string depends on your DBMS. Check your reference documentation for "date literal" or tell us what DBMS you are using.

-Rob

Not applicable
Author

MSSQL

And the date field is in datetime format

rwunderlich
MVP
MVP

WHERE DOCDATE >= '04-01-2012 00:00:00'

-Rob