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. Quote 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 Quote 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 will the output still the same or different? You can always test these cases out yourself to see if there will be any difference. Quote Link to comment https://forums.phpfreaks.com/topic/188923-sql-join/#findComment-997599 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.