Created
February 7, 2025 17:16
-
-
Save ppazos/df8b5c20d3fc2e457e426595efea9298 to your computer and use it in GitHub Desktop.
SQL LIKE OR from list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def a = ["a", "b", "c"] | |
"value LIKE "+ a.collect {"'%"+ it + "%'"}.join(" OR value LIKE ") | |
// value LIKE '%a%' OR value LIKE '%b%' OR value LIKE '%c%' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment