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)
Here you go...
IF ((select count(*) from table1)= 0) BEGIN Select * from table2 END ELSE BEGIN SELECT * from table3 END