I have a problem in SQL Server. I have a query
select FirstName, + ", " + LastName as FullName
If LastName = NULL and FirstName = "Fred"
Then FullName would be NULL. Is there a way to just have the FirstName instead?
Here is what I get: https://i.stack.imgur.com/NbLWL.png