Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
I need values of net where Type<>a,b,c and remaining fields are needed,how can I write condition for this in script with where clause.I tried something like where Type<>'a' or 'b' or 'c',but it is not working
Hi,
you can try like below
Load
*
From datasource
Where not WildMatch(Type,'A','B','C);
Hope this helps
Thanks,Deva
Hi,
you can try like below
Load
*
From datasource
Where not WildMatch(Type,'A','B','C);
Hope this helps
Thanks,Deva
Thank you,it's working fine