I have the following SQL:
select * from tb_valores
where
DATA >= '14/12/17' and
HORA >= '16:34:00')
I would like to bring all records from that date and time.
The problem is that if I have records like:
'14/12/17' '10:20:00'
'14/12/17' '13:20:00'
'14/12/17' '16:32:00'
'18/12/17' '08:00:00'
It does not have these records.