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

sql

and please also explain SELECT name students WHERE age 18 22; (challenge 2 part 7)

6th Jan 2017, 8:02 PM
Vibhanshu Tyagi
Vibhanshu Tyagi - avatar
2 Answers
+ 1
SELECT name FROM students WHERE age between 18 and 22; It means: 1. you have a table called "students" 2. in this table you have two columns of interest: "name" and "age" 3. you SELECT FROM the table named "students"... 4. ...the values in the column "name"... 5. ...corresponding to the values between​ 18 and 22 in the column "age" so you' ll obtain a new table with the name of the students who are between 18 and 22
7th Jan 2017, 5:24 AM
Be Raimondo
Be Raimondo - avatar
0
thanks a lot for the help.Really appreciate it.it helped a lot
12th Jan 2017, 12:07 PM
Vibhanshu Tyagi
Vibhanshu Tyagi - avatar