How does one detect whether a field is blank (not null) and then select another field if it is?
What I really need is a IsBlank function that works the same as IsNul
EDIT: You can't use IF() in mssql.
IF()
Use an IF statement in the SELECT portion of your SQL:
SELECT IF(field1 != '', field1, field2) AS myfield FROM ...