Jump to content

Recommended Posts

I have edited an existing code to my own having LEFT JOIN feature in it. I am getting errors while replacing table name.

 

EXISTING CODE

$tablepre = \"calendar\";

$sql = \"SELECT id, y, m, d, title, text, TIME_FORMAT(start_time, \'%l:%i %p\') AS stime, TIME_FORMAT(end_time, \'%l:%i %p\') AS etime, \" . $tablepre . \"users.uid, fname, lname FROM \" . $tablepre . \"mssgs LEFT JOIN \" . $tablepre . \"users ON (\" . $tablepre . \"mssgs.uid=\" . $tablepre . \"users.uid) WHERE id = \" . $id;

 

I need to replace [ \" . $tablepre . \"users.uid ] with [ clients.uid ]

 

Thankx in advance.

Link to comment
https://forums.phpfreaks.com/topic/1316-left-join/
Share on other sites

It\'s alot easier to use aliases for table names when joining tables. That way you only have one occurence of each tablename

 

eg (partial query as sample)

 

SELECT a.id, a.y, a.m, a.d, a.title, b.name

FROM calendarmssgs a INNER JOIN calendarusers b

ON a.uid = b.uid

WHERE a.id = $id

 

hth

Link to comment
https://forums.phpfreaks.com/topic/1316-left-join/#findComment-4370
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.