Hi! I’m a bit stuck trying to figure out how to search for a substring inside a table. I’m thinking of a journal application where I have Date and Entry columns, and I was hoping to add a search function that returns rows that match a certain substring. Reading the docs, it looks like I can match the first part of the string by doing this:
select Date Entry where ("hi%m" parse Entry) from journal_list.value
But I can’t quite figure out how to match a string that doesn’t start at the beginning. 😅