To find the names of the customers between 30 to 40 years of age, set up the query as seen here: | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

To find the names of the customers between 30 to 40 years of age, set up the query as seen here:

Select ID, Firstname, Lastname, Age From customers Order by Age Limit 29,40; Can we code like these?

3rd Apr 2018, 5:27 AM
Yiwen Zhao
Yiwen Zhao  - avatar
1 Answer
0
select ID, Fistname,lastname,age from customers where age between 30 and 40 order by age
3rd Apr 2018, 6:24 AM
kaliki chandu
kaliki chandu - avatar