I am looking for something like this pseudo-code in SQL Server to search all columns for specific values in a single table:
SELECT *
FROM Employee
WHERE any-column = 'HelloWorld'
OR any-column = 1024
Can this be achieved in one statement or do you have to make a stored procedure to make this possible?