I am having duplicates data with this enormous query.
SELECT t2.`1st_test` AS agric1, t2.`2nd_test` AS agric2,
t2.exam AS agricExam3, t2.result_total AS agricTotal,
t2.result_grade AS agricGrade, t2.result_remark AS agricRemark
FROM
result_summary AS t1
LEFT JOIN
agricultural_science AS t2
ON t1.student_id = t2.student_id
WHERE ( t1.student_id = 'GCU/16/10414'
AND t1.result_term = '1st'
AND t1.result_session = '2016/2017'
AND t1.result_level = 'JSS'
AND t1.result_class = '2')
Table Structure
Structure for the Agricultural Science table is like so:
|id|student_id|result_session|result_term|result_arm|
result_class|result_level|1st_test|2nd_test|exam|result_total|
result_grade|result_remark|
The table structure for Result_Summary Table look like so:
|id|student_id|result_score|result_average|result_term|
result_session|result_level|result_class|result_arm
Data that match the criteria exist in some tables only, while others contains two rows each with the same Student_ID but different Session. When the query is executed I get enormous duplicates and even data that does not match the 2016/2017 session.
Please, how can I fix this?
2016/2017etc I normally use e.gresult_session = @session for PDOthen supply the criteria via the codes.t1.result_session = '2016/2017'condition is not met, I'd check for some index corruption in the database. Otherwise, I don't see how you could get it.