Jump to content

Multiple queries


crashmaster

Recommended Posts

Hi there, have 1 question:

 

I have a table "users" with 2 columns (for.ex)

user_name - user_residence

 

Also I have a "comments" table.

 

Example:

 

I have a page, where are 20 comments by different users.

Is it possible to get by 1 query all users information?

 

Now my script works like this

 

$q = mysql_query ("SELECT comment_id, comment_author, comment_text FROM comments LIMIT 20");
while ($z = mysql_fetch_array($q)) {

$user_residence = mysql_result(mysql_query("SELECT user_residence FROM users WHERE user_name = '".$z[comment_author]."'"),0);

....etc....

}

 

To show 20 comments I am using 20 queries - to get residence of each user (comment_author).

 

Is there more simple way, how to get residence of all users, that posted comments by a single query?

 

Thank you

 

Link to comment
Share on other sites

Does the comments table have the user name/id as well

 

Table "comments" with columns:

 

comments | userid

 

Use a join to ....join the tables

 

// Construct our join query
$query = "SELECT user.*, comments.* ".
"FROM user, comments ".
"WHERE user.userid = comments.userid";

$result = mysql_query($query) or die(mysql_error());


// Print out the contents of each row into a table 
while($row = mysql_fetch_array($result)){
echo $row['user']. " - ". $row['comment'];
echo "<br />";
}

 

If not you cant associate the comment with the user. The only solution would be to add the comments within users table, or add the user id to the comments table...then join

 

 

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.