0
write a query to display the due_date and payable amount that are all not paid in between '2017-09-10' to '2017-10-10'.
Sql
2 ответов
0
Hello, please show us your attempts first. Then we can begin to help you. We usually don't do the homework for others. If so, you wouldn't learn anything.
Thank you.
0
SELECT due_date, payable_amount
FROM bill
WHERE due_date NOT BETWEEN '2017-09-10' AND '2017-10-10';