I have a screen where you have a list of payment titles for a company, and I need to do a dynamic search from the issue date of the title. The idea is that when the user enters the date in a search field, this data will be passed dynamically via AJAX
to a file where there will be the SQL
query.
My question, how am I going to build my WHERE
?.
Ex: WHERE data_emissao ILIKE '%2015-01-01%'
Can anyone help me?