Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have 2 qvds. Both contain same field.
In qvd1, There is data that is only according to created date .
But In Qvd2 , There is data according to change date.
there is a key that is commom in both table.
I want to fetch only data from qvd1 that do not exist in qvd2 according to the key.
All data in qvd1 are not changed , So qvd2 contain only little data.
Keep (Look at syntax in F1-help) should help you with that.
Example:
QVTab1:
select * from Table1;
QVTab2:
left keep select * from Table2;
This will load all rows from Table1 and the intersecting part from Table2.