Okay I am learning and I got two tables joined in a mysql database and working on a php page...
$query = 'SELECT * FROM `meeting` INNER JOIN `place` ON meeting.name = place.name'
. ' ORDER BY `state`,`city` ';
Now what is the correct syntax to join a 3rd table `information`? The meeting.info_id = information.id.
Any and all help is always appreciated. Thanks!
$query = 'SELECT * FROM `meeting` INNER JOIN `place` ON meeting.name = place.name'
. ' ORDER BY `state`,`city` ';
Now what is the correct syntax to join a 3rd table `information`? The meeting.info_id = information.id.
Any and all help is always appreciated. Thanks!