hi , i forgot how to do this
i have a table called wia
and a table called indv
the table wia doesnt have SSN all the time, so then what i want to do is a first name, last name , dob match
so currently i have
select *
from wia
inner join indv on wia.ssn = indv.ssn
but if the ssn in wia is null
i want to do the first name, last name, dob link.
only if the ssn in wia is null
Thanks in advance
i have a table called wia
and a table called indv
the table wia doesnt have SSN all the time, so then what i want to do is a first name, last name , dob match
so currently i have
select *
from wia
inner join indv on wia.ssn = indv.ssn
but if the ssn in wia is null
i want to do the first name, last name, dob link.
only if the ssn in wia is null
Thanks in advance