Basically, what syntex would allow me to achieve the title statement?
If (select statement 1) returns 0 rows THEN (select statement 2) else (select statement 3)
IF EXISTS (SELECT field FROM table) BEGIN SELECT field FROM table2 END ELSE BEGIN SELECT field FROM table3 END