Drizzle search column for string
Very noob question: Hey, I've switched to Drizzle, set up my tables. I've also looked into the filters and operations, but I cannot find any way to search a column for values containing x, e.g. for a search field of usernames. How can I do this in Drizzle? Any answer is greatly appreciated.
6 Replies
Equivilent in Prisma would be, but what about Drizzle? 😅
Thank you, however I want something that acts more like the contains-feature in Prisma, is this possible?
I have a value in my db which is "Equinor ASA", if I type "Equinor" with the like-operator, nothing is returned. Same with "Equinor AS". It seems like the value has to equal what you're looking for?
you have to wrap using %
Thank you!