The following query works well in Oracle, but not in SQL SERVER. I know "ANY", keyword in SQL SERVER developed for some other purpose, but I Wanna know is there any similar keyword in SQL SERVER FOR doing this In the following query fisrtname, lastname, middlename are columns in Person table
SELECT * FROM Person WHERE 'Somename' = ANY(firstname, lastname,middlename)