Viewing 3 posts - 1 through 3 (of 3 total)
Thanks for the response. Though I learned from the article, it did not help me resolve me issue. I've double checked and we are only using merge and...
July 14, 2014 at 12:28 pm
#1729236
Kind of a DUH! moment for me. Thanks. This is exaclty what I needed.
October 12, 2007 at 5:29 pm
#741754
Because you are performing an outer join, the data not contained in the upload table will show nulls, so you can test for null.
select distinct p.first_name
,p.last_name
,p.people_code_id
from people as p...
October 12, 2007 at 5:07 pm
#741748