I would like to list the missing date between two dates in a request for example
my data :
TABLE ORDER
DATE_order | AMOUNT
01/01/2020 | 500
01/01/2020 | 600
03/01/2020 | 100
05/01/2020 | 300
I want the request to return
01/01/2020 | 1100
02/01/2020 | 0
03/01/2020 | 100
04/01/2020 | 0
05/01/2020 | 300
i use Cassandra database whith Apach Hive connector
someone can help me ?