Jump to content

Help with Join Query


datoshway

Recommended Posts

Thank you!  For some reason i'm only getting two results from one table with that query.  There should be 3 results if we were getting data from both tables.  Below is my full code.  Any ideas on where the snag might be?

 

$strQuery			= "SELECT * FROM tblDocuments INNER JOIN tblCleaning ON ( tblCleaning.strMessage = tblDocuments.strMessage ) ORDER BY tblDocuments.dtAdded DESC";
$queryGetNews		= db_query($strQuery);

 

 <?php
							if (db_num_rows($queryGetNews) > 0) {
								while ($objRow = db_fetch_object($queryGetNews)) {
									$intRowID		= intval($objRow->intID);
									$strRowName		= stripslashes($objRow->strHeadline);
									$strMessage		= stripslashes($objRow->strMessage);
									$dtAdded	= date("m/d/Y", strtotime($objRow->dtAdded));
									?>


									<div id="messages" style="border:1px solid #999; width:430px; height:26px; line-height:26px; margin-bottom:3px; padding-left:5px;"><?php echo $dtAdded; ?> - <?php echo $strMessage; ?></div>


									<?php
								}
								db_free_result($queryGetNews);
							}
						?>

Link to comment
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.