-1
I have a contract table called contract two-column data_ini
and data_fim
.
data_ini
and data_fim
are as follows: 20/04/2014 10:46
I need to do a search between dates, without the time. If I didn’t have the time I could, but with the time this difficult.
I’m trying it now
SELECT DATE_FORMAT(data_ini, '%d/%m/%Y') FROM contrato
Buddy, I am browsing and trying right in mysql. What I found now and am testing is SELECT DATE_FORMAT(data_ini, '%d/%m/%Y') FROM contract
– Tiago