I need help with practice 18.2 Mentors and Apprentice in SQL | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I need help with practice 18.2 Mentors and Apprentice in SQL

Please, I need help with this question I have been trying to solve this problem I have tried to get this but I keep getting errors. I don't know what I am doing wrong. Thanks

6th Sep 2021, 2:40 PM
Olatunde Aboaba
4 Answers
+ 3
You only need to select teachers lastname as teacher, and the WHERE clause contains any specific condition not columns name, then you need to sort this data by student.id.. /******************** your code goes here SELECT students.id, students.firstname, students.lastname, teachers.lastname AS teacher FROM students, teachers WHERE students.teacherid = teachers.id ORDER BY students.id;
6th Sep 2021, 4:05 PM
Rupali Haldiya
Rupali Haldiya - avatar
+ 1
Please show your attempt, so that we can help you
6th Sep 2021, 2:52 PM
Rupali Haldiya
Rupali Haldiya - avatar
+ 1
SELECT students.ID, students.firstname, students.lastname, teachers.firstname, teachers.lastname FROM students, teachers WHERE (students.ID, students.lastname,teachers.lastname) AS teacher
6th Sep 2021, 3:32 PM
Olatunde Aboaba
0
Thanks very much. You are awesome
6th Sep 2021, 4:27 PM
Olatunde Aboaba