graham262 Posted June 15, 2007 Share Posted June 15, 2007 Hi, I've got a table "students" with the following fields {student_name, home_university, host_university}, both home and host universities are ID that refer to a "university" table containing {id, name, city} for example What I want to do is pull out from one query the student ID and the name of their home and host university. To do this I need to link both home and host uni id to the university table but am not sure how to code this in MySQL. If it was just the home uni name I was after I would do this: SELECT students.name, universities.name FROM students, universities WHERE students.home_university=university.id What if I want to display a list of results listing both home AND host uni names and then perhaps list by either name alphabetically? ??? Quote Link to comment https://forums.phpfreaks.com/topic/55686-home-host-university-link-problem/ Share on other sites More sharing options...
bubblegum.anarchy Posted June 15, 2007 Share Posted June 15, 2007 Read this: http://dev.mysql.com/doc/refman/4.1/en/join.html and then Read the ORDER BY information here: http://dev.mysql.com/doc/refman/4.1/en/select.html Quote Link to comment https://forums.phpfreaks.com/topic/55686-home-host-university-link-problem/#findComment-275170 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.