I need to create a SQL statement that uses the LIKE keyword to filter the result set. Sometimes this value is NULL.
What is the best way to implement in T-SQL? I am using SQL server 2005
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use coalesce!
Edit: This is probably the wrong way to do it but I guess it’s an option.