WHERE filtering options? #434
-
I read through some of the docs and worked through the tutorial. I noted that you can filter:
which successfully shows the records with TOM as first_name. This seems to require an exact match. As example how would I search for anything that starts with “TO” or perhaps contains “TO”, to show record for TOM, TORRY, TONY, TOBIAS… I know SQL generally has a LIKE operator with % and _ options. I tried using * and % but neither worked. So I guess my questions is if there are options to search for partial match of a string? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I solved this somewhat by removing the
This works, but let me know if there's a way to do this within sq. Thanks. |
Beta Was this translation helpful? Give feedback.
Just to follow up on this when I used sql it also did work:
Incase someone else runs into this issue.
Best