Skip to main content
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.

2 Replies
swuehl
MVP
MVP

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;

tresesco
MVP
MVP

you can use First like:

First 100

Load * from ...;

this will pull first 100 records from your source