gpt4 book ai didi

php - 使用左连接和内连接的 CodeIgniter 数据库查询

转载 作者:行者123 更新时间:2023-11-29 07:25:55 24 4
gpt4 key购买 nike

我在翻译此数据库查询时遇到问题

 SELECT 'conversations','conversation_id',
'conversations','conversation_subject',
MAX('conversations_messages','message_date') AS 'conversation_last_reply'
FROM 'conversations'
LEFT JOIN 'conversations_messages' ON 'conversations'.'conversation_id' = 'conversations_messages'.'conversation_id'
INNER JOIN 'conversations_members' ON 'conversations'.'conversation_id' = 'conversations_members'.'conversation_id'
WHERE 'conversations_members', 'user_id' = $sender_id
AND 'conversations_members','conversation_deleted' = 0
GROUP BY 'conversations'.'conversation_id'
ORDER BY 'conversation_last_reply' DESC";

到 codeignitor 的事件记录。

我已经尝试过这个方法了

$this->db->select('conversation_id, conversation_subject');

$this->db->get('conversations');

$this->db->select_max('message_date', 'conversation_last_reply');

$this->db->get('conversations_messsages');
$this->db->from('conversations');
........

但是我得到了左侧的堆栈和内部连接。所以我尝试了这种方式

 $query = $this->db->query(
SELECT
'conversations','conversation_id',
'conversations','conversation_subject',
MAX('conversations_messages','message_date') AS 'conversation_last_reply'
FROM 'conversations'
LEFT JOIN 'conversations_messages' ON 'conversations'.'conversation_id' = 'conversations_messages'.'conversation_id'
INNER JOIN 'conversations_members' ON 'conversations'.'conversation_id' = 'conversations_members'.'conversation_id'
WHERE 'conversations_members', 'user_id' = $sender_id
AND 'conversations_members','conversation_deleted' = 0
GROUP BY 'conversations'.'conversation_id'
ORDER BY 'conversation_last_reply' DESC"
);
return $query->result();

但到处都是错误。

最佳答案

你引用错了

$query = $this->db->query("SELECT 'conversations','conversation_id',
'conversations','conversation_subject',
MAX('conversations_messages','message_date') AS 'conversation_last_reply'
FROM 'conversations'
LEFT JOIN 'conversations_messages' ON 'conversations'.'conversation_id' = 'conversations_messages'.'conversation_id'
INNER JOIN 'conversations_members' ON 'conversations'.'conversation_id' = 'conversations_members'.'conversation_id'
WHERE 'conversations_members', 'user_id' = $sender_id
AND 'conversations_members','conversation_deleted' = 0
GROUP BY 'conversations'.'conversation_id'
ORDER BY 'conversation_last_reply' DESC"
);
return $query->result();

关于php - 使用左连接和内连接的 CodeIgniter 数据库查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34563181/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com