S
Stever
I created a seemingly simple query to combine 2 fields. It works as long as
there is information in both fields however if there is a null in either the
field is blank. Fields are of type NVARCHAR
This is what I would like to have happen.
Proj_No Alias_Number Proj_Alias_Number Currently the
results are
123 456 123 456
123 456
123 123
Blank
456 456
Blank
Here is what I have so far.
SELECT Proj_No + N' ' + Alias_Number AS Proj_Alias_Number,
FROM dbo.tblCivil_RecordScan
Thanks in advance!
Steve
there is information in both fields however if there is a null in either the
field is blank. Fields are of type NVARCHAR
This is what I would like to have happen.
Proj_No Alias_Number Proj_Alias_Number Currently the
results are
123 456 123 456
123 456
123 123
Blank
456 456
Blank
Here is what I have so far.
SELECT Proj_No + N' ' + Alias_Number AS Proj_Alias_Number,
FROM dbo.tblCivil_RecordScan
Thanks in advance!
Steve