Hello,
I need to check which purchases have been made in the last 7 days
select * from carros car where to_date(to_char(to_date(car.datacompra,'yyyymmdd'),'dd-mm-yyyy')) = trunc(sysdate - 7)
I get the following error:
ORA-01840: valor de entrada não é longo o suficiente para formato de data
Thank you