Benim veritabanında ben sorular ve cevaplar var. Her yazı bir 'POSTID' vardır ve sadece cevaplar sorunun 'POSTID' başvuran bir 'responseID' var.
Ben cevap responseID = postID beri hangi soru gidip hangi belirleyebilir
Ben aşağıdaki biçimde verileri görüntülemek istiyorsunuz bazı php kod yazmak istiyorum:
Question:
- answer
- answer
- answer
Question:
- answer
- answer
- answer
... Ve benzeri
Additional Info:
The Questions and Answers are in the same tblQA table. The colums are QAID, PosterID, ResponseID, TimeStamp, Category, Body.
Yani, her yazı bir Qaid vardır. Bir soru bir kategori olurdu, ve bir cevap Qaid soruları egale bir responseID olurdu.
This would grab ALL questions:
SELECT * FROM tblQA WHERE category IS NOT NULL
This would grab all answers:
SELECT * FROM tblQA WHERE ResponseID IS NOT NULL