I am running a query that takes Streets.Name and Streets.Type and combines them into a field called Street. Sometimes Streets.Type is NULL. When it is NULL, I get nothing in Street - empty string. Is there a way to say in the select statement, to use Streets.Name for Street if Streets.Type is NULL?
I tried some things I found in other posts, but I haven't found anything that will work yet.
SELECT Streets.City, Streets.Name + ' '+ Streets.Type AS Street...
Please help. I would appreciate any advice...
I tried some things I found in other posts, but I haven't found anything that will work yet.
SELECT Streets.City, Streets.Name + ' '+ Streets.Type AS Street...
Please help. I would appreciate any advice...