We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hoje é possível pesquisar filtros OR apenas com o operador Equals, quando é preciso fazer um Like com diversos ORs isso não é possível.
Ex.:
select p from Person p where (p.name LIKE '%Joseph%' OR p.lastName LIKE '%Samarc%') AND (p.name LIKE '%Hebert%' OR p.lastName LIKE '%Antoni%')
The text was updated successfully, but these errors were encountered:
Lo mismo pasa cuando quiero usar "is null" Ejemplo: Hello, after reading this example:
Ejemplo de la página: select s from Song s where (s.totalDownloads = 20 or s.weight = 10.00) and (s.price = 20.00 or s.type = :type)
Lo que yo necesito: (s.price = 20.00 or s.type is null), how to make this?
Sorry, something went wrong.
No branches or pull requests
Hoje é possível pesquisar filtros OR apenas com o operador Equals, quando é preciso fazer um Like com diversos ORs isso não é possível.
Ex.:
The text was updated successfully, but these errors were encountered: