Is it possible to select all documents where a field contains a value.
i.e is the following sql possible?
Select * FROM table WHERE field LIKE %substring%
Is it possible to select all documents where a field contains a value.
i.e is the following sql possible?
Select * FROM table WHERE field LIKE %substring%
There is no exact equivalent to the SQL-keyword LIKE
in CouchDB. Depending on your use case, you may achieve something similar by building an appropriate index.
Take a look at this question: http://stackoverflow.com/q/3716857