Jump to content

SQL Join


warhead2020

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.