Write a query to display the details of the students who have scored 90 Marks in at least one subject | 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 details of the students who have scored 90 Marks in at least one subject

27th Dec 2017, 3:23 AM
Sohana Saheen
2 Answers
+ 1
How should I answer this question? you did not even describe the tables used, what fields they contain, how the students table relationship with the subjects and scores tables. I don't suppose you expected a wild guessing answer did you?
27th Dec 2017, 4:26 AM
Ipang
0
SELECT DISTINCT * FROM `students` WHERE `score`='90'
27th Dec 2017, 5:07 AM
BodyaBuilder
BodyaBuilder - avatar