I have table that has columns FName, Spouse and LName. If one of the columns (Spouse) is null, I get no results for that column. How do you write the query to show the rows when the spouse column is null and just show the first and last name for that column?
SELECT resFName + ' and ' + resSpouse + ' ' + resLName AS Resident, address, email, residentID
FROM dbo.tblResidents
SELECT resFName + ' and ' + resSpouse + ' ' + resLName AS Resident, address, email, residentID
FROM dbo.tblResidents