I have a pet project on feedback system with to tables, one caputres the questions of customers and another caputures the answeers of help desk.
////////////////////////////////////////////////////////////////////////
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
to get answers mysql query is:
SELECT*from customers_question, helpdesk_answers
WHERE customers_qst.Qst_id = helpdesk_answers(FK Qst_id)
i get all questions that already answered. QUESTION: HOW DO I GET OR COUNT UNANSWERED QUESTION?