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 two tables as user_discussions and user_discussion_answers. user_discssions is a thread and user_discussion_answers is a thread message. I have to sort user_discussions with its last entered message with propel 1.6 but I could not. This is similar with facebook message system.

So my query is:

    $message_answer = UserDiscussionAnswersQuery::create()
            ->withColumn("MAX(UserDiscussionAnswers.Id)")
            ->groupByDiscussionId();

    $c = UserDiscussionsQuery::create()

    ->filterByStatus(true)
    ->addSelectQuery($message_answer,"g")
    ->filterByDiscussionType("private")
    ->condition("cond1", "UserDiscussions.UserId =?",$this->getUser()->getProfile()->getUserId())
    ->condition("cond2", "UserDiscussions.SenderDelete =?",false)
    ->combine(array("cond1","cond2"),"and","cond12")
    ->condition("cond3","UserDiscussions.ToUserId =?",$this->getUser()->getProfile()->getUserId())
    ->condition("cond4","UserDiscussions.ReaderDelete =?",false)
    ->combine(array("cond3","cond4"),"and","cond34")
    ->where(array("cond12","cond34"),"or")
    ->orderBy("g.Id","desc")
    ->paginate($page, 2);

The basic question is how can sort user discussions with its last entered answer?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.