-
-
Notifications
You must be signed in to change notification settings - Fork 727
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LIKE operator #133
Labels
Comments
Hello @dm7sistemas, You want to use the LIKE operator of SQLite. And it is missing from GRDB so far: that's why you can't find it in the documentation. I guess it should be added, yes. Until then, use a little SQL snippet: db_verbs
.filter(sql: "basename LIKE ?", arguments: ["be%"])
.order(Column("basename"), Column("past"))
.fetchAll(db) |
groue
changed the title
Select basename from verbs where basename like '%He%'
LIKE operator
Sep 27, 2016
Ok, Thanks for help me. I started using yesterday !! |
You're welcome! Happy GRDB! |
In next GRDB version, you'll write |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How I use this example I try but I don't know
I need select using like
The text was updated successfully, but these errors were encountered: