Jump to content

grabbing based on unique row entry for specific column


aebstract

Recommended Posts

Here is my current query:

 

mysql_query("SELECT * FROM news WHERE id = '1'") or DIE(mysql_error());

 

I'm trying to do this exact same thing, except that I have a column called topic_id and I want it to only return 1 result per unique topic_id. I'm trying to find a way to do it, if I find something before someone responds I'll update the post. Thanks

Link to comment
Share on other sites

Ack, firstly I posted the wrong query. (sry)

 

mysql_query("
SELECT *
FROM posts
JOIN forums ON ( forums.forum_id = posts.forum_id )
JOIN users ON ( users.user_id = posts.poster_id )
ORDER BY post_time DESC
LIMIT 4
");

 

I'm not trying to grab just 1 row, I'm trying to grab 4 rows from the database, but they have to have a unique topic_id.

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.