I need some help with sql | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I need some help with sql

Get the first name and invoiced amount of customers whose invoice is less or equal to $40. Do not use the less or equal operator.

5th May 2018, 7:36 PM
Shamin Tasnim
Shamin Tasnim - avatar
2 Answers
+ 2
SELECT first_name, amount FROM table WHERE invoice BETWEEN 0 AND 40
5th May 2018, 8:22 PM
Toni Isotalo
Toni Isotalo - avatar
0
thanks bro
6th May 2018, 11:40 AM
Shamin Tasnim
Shamin Tasnim - avatar