GQL query with the like operator

Possible duplicate:
Google App Engine: is it possible to execute a Gql LIKE request?

In SQL (at least in T-SQL), you can write a query that uses the "how" operator, something like this:

select * from MyTable where MyColumn like '%something%'

Is there any way to do this in GQL?

+3
source share

Source: https://habr.com/ru/post/1729955/


All Articles