Thanks for your help !
CodePudding user response:
The problem in this particular example is the start date ('st_date'='04/13/2021'
) being a date after the end date ('end_date'='04/13/2002'
). The request is hence basically for data from after 2021 but before 2002, which doesn't quite make sense.
Changing the latter to any date after 04/13/2021 in this scenario should solve the problem.