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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Kohli
Creator II
Creator II

Fetch the limited data in Tables

Iam using my sql database. It has lot of data. I need to fetch the only from 01-02-2019 on wards. How can i do it

2 Replies
mrybalko
Creator II
Creator II

You should limit data in SQL SELECT by WHERE or LIMIT

SELECT *
FROM tbl_foo
WHERE name = 'sarmen'
LIMIT 1

You can use Qlik keyword "First"  but it is executed after SQL.

sirivikram1506
Contributor III
Contributor III

 

Hi Kohli,

Floow below procedure to restrict the data at script level.

Load/Select  col1,col2,clo3,clo4,col.......n from table 

where Date>='01-02-2019 ' ;

i hope it helps you.

Regards,

Vikram