I’ve been instructed “not to bother with LIKE” and use ~ instead. What is wrong with LIKE and how is ~ different?
Does ~ have a name in this context or do people say “use the tilde operator”?
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.
~is the regular expression operator, and has the capabilities implied by that. You can specify a full range of regular expression wildcards and quantifiers; see the documentation for details. It is certainly more powerful thanLIKE, and should be used when that power is needed, but they serve different purposes.