LOAD only if value is greater than already existing values
Hi all,
I first load a table like this:
dataa:
LOAD id, date from ./my_data.qvd (qvd);
Then, I load a second table like this:
noconcatenate
datab:
sql select id, date from my_table;
Now I want to concatenate the data in table datab to the data in table dataa, but only the lines in datab that have a date value higher than any existing date value in table dataa.