show/hide this revision's text 2 added 88 characters in body

This is gross, but if you are guaranteed to have at least one, you could do:

SELECT ...
       ...
 WHERE id tag IN( @id1, tag1, ISNULL( @id2, tag2, @id1 ), ISNULL( @tag3, @tag1 ), etc. )

Having IN( 1, 1, 1, 1 'tag1', 'tag2', 'tag1', 'tag1', 'tag1' ) will be easily optimized away by SQL Server. Plus, you get direct index seeks

show/hide this revision's text 1

This is gross, but if you are guaranteed to have at least one, you could do:

SELECT ...
       ...
 WHERE id IN( @id1, ISNULL( @id2, @id1 ), etc. )

Having IN( 1, 1, 1, 1 ) will be easily optimized away by SQL Server.