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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Retrieving limited records from database

Hi All,

How to retrieve limited records from database.

Kindly help me any one.

Thanks in Advance,

Ram.

Labels (1)
2 Replies
swuehl
Champion III
Champion III

Not sure if I fully understand, but you can limit the records by using a WHERE clause, like:

SELECT FieldA FROM DB WHERE FieldA > 0;

tresB
Champion III
Champion III

you can use First like:

First 100

Load * from ...;

this will pull first 100 records from your source