is it possible to tell in which column the search string was found, without having to do it with ifs?
if <searchstring> in column1
-- do some stuff here
else if <searchstring> in column2
...
...
i won't post the exact query, as it is too cryptical and too long, but here's a query which does basically the same
select
title,
description
from
position
where
CONTAINS( (title, description), '"manager"' )