gpt4 book ai didi

php - MySql 算子复杂度

转载 作者:行者123 更新时间:2023-11-29 06:36:13 24 4
gpt4 key购买 nike

我有一个关于表的反馈系统的宠物项目,一个捕获客户的问题,另一个捕获服务台的答案。


////////////////////////////////////////////////////////////////////////
Customers_Question table AND helpdesk_answers includes:
Qst_id(pk), Qst_id(pk)(FK)
qst_title, helpdesk_answer
qst_comment,
qst_customer_name,
qst_date

得到mysql查询的答案是:

SELECT*from customers_question, helpdesk_answers
WHERE customers_qst.Qst_id = helpdesk_answers(FK Qst_id)

我得到了所有已经回答的问题。问题:如何获取或统计未回答的问题?

最佳答案

SELECT q.* 
from customers_question q
left join helpdesk_answers a on q.Qst_id = a.Qst_id
where a.Qst_id is null

参见 this great explanation of joins

关于php - MySql 算子复杂度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24591715/

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