Jump to content

[SOLVED] INNER JOIN - does the order of the ON elements matter ?


scanreg

Recommended Posts

I have the following:

 

	$categoryid =  mysqli_real_escape_string($link,	$_GET['category']);
if ($categoryid != '') // A category is selected
{
	$from  .= ' INNER JOIN jokecategory ON id = jokeid';
	$where .= " AND categoryid='$categoryid'";
}

 

Does the order of the "ON id = jokeid';" matter? For instance, would the following be just as valid:

 

$from  .= ' INNER JOIN jokecategory ON jokeid = id';

 

An experiment seems to indicate that it doesn't but wanted to ask

 

Many thanks :)

  • 2 weeks later...

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.