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'. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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

9th Apr 2021, 10:24 AM
Ashish Katta
Ashish Katta - avatar
2 Answers
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.
9th Apr 2021, 10:32 AM
Julian
Julian - avatar
0
SELECT due_date, payable_amount FROM bill WHERE due_date NOT BETWEEN '2017-09-10' AND '2017-10-10';
7th Mar 2023, 11:37 PM
TEJAS RAJANKAR
TEJAS RAJANKAR - avatar