按字段分组结果

时间:2011-09-13 20:17:44

标签: php mysql codeigniter

我正在为网站构建一个邮件系统,但我希望它有一个即时通讯应用程序的感觉。 我的表格有这样的结构:

<!-- language: lang-none -->
id
R_id     = Reciever's id
S_id     = Sender's Id
message
read     = 0 if unread, 1 if read
post_time
conv_id  = conversation id

我正在尝试构建一个查询,该查询检索与接收用户有关的所有消息,并以组格式显示,即来自用户名称的所有消息,类似于facebook消息。

这是我模型中的方法,正在使用codeigniter

function get_user_conversations($user_id) {
       //Load Models
       $this->load->model('conversation_model');
       //Load helper
       $this->load->helper('date');
       //database query
       $q = $this->db->select('*')
                     ->from('conversations_inbox')
                     ->where('R_id',$user_id)
                     ->group_by('S_id')
                     ->order_by('post_time','desc')
                     ->get();
        $conversations = $q->result();
        return $conversations;
   }

1 个答案:

答案 0 :(得分:0)

也许是这样的?

// Presuming you want the most recent ones first
$q = mysql_query("SELECT message FROM `TABLE` WHERE `R_id`='USERNAME_HERE' ORDER BY `post_time` DESC");
while ($row = mysql_fetch_array($q)) {
  echo "<li>Message: " . $row['message'];
}

老实说,我不确定你在问什么,所以这是我能做的最好的。