Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
What is the syntax for restricting rows while loading data using Data Load editor.
For example I want to load "Color" column where the values are ONLY red and green
Load
Color as "System Color"
Quantity
From "File"
where color in ('Red', 'Green')
How to do this?
Try:
Load
Color as "System Color"
Quantity
From "File"
where wildmatch(Color,'Red','Green');
Try:
Load
Color as "System Color"
Quantity
From "File"
where wildmatch(Color,'Red','Green');
Thank you so much