SQLite performing a like is not working as expected ...
So I have a record in my DB where, e.g., the schema field "name" is equal to "Sirius" for one record.
I then query as follows:
As far as I am aware, the
like
operation in SQLite behaves as an ilike
in other db implementations, but for some reason ... this query is returning zero results.
I'm trying to reference the documentation to understand what the underlying query is, but can't seem to reference it.
But I'm also scratching my head as to what I have done wrong here? Help very much appreciated! 🙂1 Reply
As a direct comparison, swopping out the where for this:
... works absolutely fine