Can u join 3table in the same time? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Can u join 3table in the same time?

2nd Jan 2017, 9:04 PM
Nader Salah Mohammed
Nader Salah Mohammed - avatar
4 Answers
+ 2
Yes, it's possible
2nd Jan 2017, 9:10 PM
Ruslan A.
+ 2
Just do what you need by creating a new view and play around with the view designer
2nd Jan 2017, 9:15 PM
Ayman Alshaybani
Ayman Alshaybani - avatar
+ 2
It could be simple and may be a little tricky for example, let say you have 3 students table broken down to ease relationship thus; tblstudents (studentID, full_name, dob, address, phone) tblclass_registrations (studentID, session, semester, level) tblassessments (studentID, subject, ca1, ca2, exams, total, grade, remark) Supposed from the tables above You want produce a result by displaying Student’s Name, Subjects and their respective grades, you will need to joint all the 3 tables thus SQL STATMET ++++++++++++++++++++++++++++++++++++++++++++++++ SELECT tblstudents.full_name, tblclass_registrations.session, tblclass_registrations.level, tblclass_registrations.semester, tblassessments.ca1, tblassessments.ca2, tblassessments.exams, tblassessments.exams, tblassessments.total, tblassessments.grade, FROM blstudents, tblclass_registrations, tblassessments WHERE tblstudents.studentID = tblclass_registrations.studentID AND tbl tblstudents.studentID = tblassessments GROUP BY tblassessment.subjects +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ END OF STATEMENT I hoped it is informative
2nd Jan 2017, 9:49 PM
Malik Bashir
Malik Bashir - avatar
0
thanks Guy's
2nd Jan 2017, 10:15 PM
Nader Salah Mohammed
Nader Salah Mohammed - avatar