Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
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;