Answers for "QUERY JPQL"

SQL
0

QUERY JPQL

select la 
  from lancamento la 
 where (:descricao is null or descricao like %:descricao%) 
   and (:dataDe is null or dataVencimento >= :dataDe) 
   and (:dataAte is null or dataVencimento <= :dataAte)
Posted by: Guest on February-03-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language