I have 2 columns: Title_A and Title_B
In each row, Title_A or Title_B may be NULL, but both columns will never have NULL on the same row.
How can I return a singular "Title" column in a SQL Server 2K Stored Procedure?
Sample of table data:
Sample of desired output:
Proper normalization would solve this, but I need to do this on this existing system, as is.
I'd like to see a T-SQL solution, otherwise I'd have to do it in ASP.
Thanks in advance!
In each row, Title_A or Title_B may be NULL, but both columns will never have NULL on the same row.
How can I return a singular "Title" column in a SQL Server 2K Stored Procedure?
Sample of table data:

Sample of desired output:

Proper normalization would solve this, but I need to do this on this existing system, as is.
I'd like to see a T-SQL solution, otherwise I'd have to do it in ASP.
Thanks in advance!