Can I ignore some columns in WHERE condition?
SELECT name FROM people
WHERE name LIKE 'Honza' AND surname LIKE 'Novak'
(I recieve the WHERE condition as parametr unable to edit it)
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.
I think the answer here is no, you cannot. You got the where condition and if you can’t edit it, it will be processed as is. If you can add to the end you could add an AND and an OR to override, but that’s about it.