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.
2 Respuestas
+ 2
SELECT first_name, amount FROM table WHERE invoice BETWEEN 0 AND 40
0
thanks bro