Jump to content

[SOLVED] Any syntax problem with these queries?


transparencia

Recommended Posts

The queries are the following:

 

$query  = "SELECT *, u.name as uploader_name FROM #__attachments AS aa ";
$query .= "INNER JOIN #__users AS u ON u.id = aa.uploader_id ";
$query .= "WHERE aa.article_id='$article_id' AND aa.published='1' ";
$query .= "ORDER BY $order_by";

 

The queries above are suposed to do the same thing as this:

 

$query = "SELECT * FROM #__attachments WHERE article_id='$article_id' AND published='1' ORDER BY $order_by";

 

But adding a new feature.

 

Is there any syntax or other problem with the above queries?

I'd suggest:
$query = "SELECT aa.*, u.name AS uploader_name 
	  FROM #__attachments AS aa
	  INNER JOIN #__users AS u ON u.id = aa.uploader_id 
	  WHERE aa.article_id='$article_id' 
	  AND aa.published='1'
	  ORDER BY $order_by";

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.