warhead2020 Posted January 18, 2010 Share Posted January 18, 2010 Hi, i have one simple question regarding Inner Join. SELECT column_name(s) FROM table_name1 INNER JOIN table_name2 ON table_name1.column_name=table_name2.column_name If i change this code to this code SELECT column_name(s) FROM table_name1 INNER JOIN table_name2 ON table_name2.column_name=table_name1.column_name will the output still the same or different? Thank in advance. Link to comment https://forums.phpfreaks.com/topic/188923-sql-join/ Share on other sites More sharing options...
kickstart Posted January 18, 2010 Share Posted January 18, 2010 Hi Won't make any difference. All the best Keith Link to comment https://forums.phpfreaks.com/topic/188923-sql-join/#findComment-997519 Share on other sites More sharing options...
Maq Posted January 18, 2010 Share Posted January 18, 2010 Quote will the output still the same or different? You can always test these cases out yourself to see if there will be any difference. Link to comment https://forums.phpfreaks.com/topic/188923-sql-join/#findComment-997599 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.