Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
you will get only the matched records in table1 as you are using left join ,no need to use Exists explicitly...
you may try below if still you want to use exists
exists(KeySpecID,CO_ID &'_'& PocketSpecID)
you will get only the matched records in table1 as you are using left join ,no need to use Exists explicitly...
you may try below if still you want to use exists
exists(KeySpecID,CO_ID &'_'& PocketSpecID)
Thanks Anat, I decided to use Exists() to get an optimized load from the qvd file. Isn't that the main reason to use exists()?.
Otherwise, I've used a structure as you proposed, and that works ok.