PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

O parâmetro dinâmico de dados de mola de intervalo do Postgres não está funcionando


Tente passando um String ?
@Query(value="select * from recalls_t where created_date <=  (now() - interval ?1)", 
       nativeQuery=true)
public List<RecallsT> findActiveRecallsInLastHrs(String interval);

// ... 

findActiveRecallsInLastHrs("1 hour");