Beppi Posted June 9, 2008 Share Posted June 9, 2008 Hello. I hope not to be on the wrong place, to ask a help on a select. This is a conceptual problem I've been going around for some time. I'm pretty sure that it's a really basic question, but, anyway, I cannot find any solution anywhere.... I've got a table like this: iduser_id1user_id2 1xy 2xz 3wz And another table similar to this: user_idname xJohn yPaul zRingo wGeorge How can I get the result of the first table, with the names, instead of the ids? So, this result? user_name1user_name2 JohnPaul JohnRingo GeorgeRingo Thank you very much for the help that you'll give me Beppi. Link to comment https://forums.phpfreaks.com/topic/109427-solved-help-on-select/ Share on other sites More sharing options...
Barand Posted June 9, 2008 Share Posted June 9, 2008 SELECT t1.name, t2.name FROM atable a INNER JOIN anothertable t1 ON a.user_id1 = t1.user_id INNER JOIN anothertable t2 ON a.user_id2 = t2.user_id Treat the single physical "anothertable" as two logical tables t1 and t2 Link to comment https://forums.phpfreaks.com/topic/109427-solved-help-on-select/#findComment-561533 Share on other sites More sharing options...
Beppi Posted June 9, 2008 Author Share Posted June 9, 2008 Uuuh!! Logical table!! Many thanks, really. Link to comment https://forums.phpfreaks.com/topic/109427-solved-help-on-select/#findComment-561539 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.