Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How to filter data while loading a qvd without using where clause. For example I have a field named state and I want to load data only for "ORISSA" without using where clause. How will I do that?
Try like this?
Load
*,
if(State='ORISSA', State) as State
From YourQVD;