Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have 2 tables:

Topics

  • topic_id
  • topic_subject
  • topic_date
  • topic_category
  • topic_by
  • topic_content
  • topic_views

Posts

  • post_id
  • post_content
  • post_date
  • post_topic
  • post_by

what i want is a list of every topic, ordered by the latest post in that topic

so....

select (table.topics) some type of join, 
       select (table.posts where post_topic = topic_id) 
order/group by table.posts.post_date

i want to see each topic once and only have the latest post accociated with each.

the topic columns should have no effect on the sort. just the fact that they are all there and sorted by the lats post.

please help me my forum is sorted by latest topic created right now!

share|improve this question

closed as not a real question by vascowhite, brian d foy, bensiu, RobB, Jocelyn Jan 15 at 2:25

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

Use order by topic_id, table.posts.post_date this will show you the posts ordered by topic and the posts in the same topic will be ordered by post date.

The query will be:

select * 
from topics 
inner join posts on (posts.post_topic =topics.topic_id) 
where (your conditions) 
order by topic_id, posts.post_date
share|improve this answer
i dont need to show the posts. i want all of the topics, with the most recently posted on at the top. – contehhh May 11 '12 at 9:52

Please try this

SELECT TOPICS.COLUMNS,POSTS.COLUMNS
FROM TOPICS INNER JOIN POSTS
ON TOPICS.TOPIC_ID=POSTS.POST_TOPIC
ORDER BY TOPICS.TOPIC_ID,POSTS.POST_DATE
share|improve this answer
#1054 - Unknown column 'myprefix_topics.COLUMNS' in 'field list' – contehhh May 11 '12 at 7:41
^ @user1388567 - I think the columns are for you to fill in, rather than taking 'COLUMNS' literally ;-) – halfer May 11 '12 at 7:45
i thought it may be a mysql function or the like haha – contehhh May 11 '12 at 7:51
[code]SELECT oh9ws_forumula_topics.*, oh9ws_forumula_posts.* FROM oh9ws_forumula_topics INNER JOIN oh9ws_forumula_posts ON oh9ws_forumula_topics.topic_id=oh9ws_forumula_posts.post_topic ORDER BY oh9ws_forumula_posts.post_date DESC[/code] this works well, but for every post another row is created. i need one row to identify the topic, and on the same row (right side) to identify latest post. – contehhh May 11 '12 at 7:57

I understand that post_Topic is your reference field . IF you want to list by topic and sort according to the latest post in the topic at the top..

( I have given all columns , in the selection , you can remove those not required .)

Then you have to

SELECT Topics.* , Posts.* FROM 
Topics,Posts
WHERE 
Topics.Tpics_id = posts.post_topic
ORDER BY 
Topics_id ,post_date  desc 
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.