当前位置:  开发笔记 > 编程语言 > 正文

如何解决mysqli_fetch_array()错误

如何解决《如何解决mysqli_fetch_array()错误》经验,为你挑选了1个好方法。

当我运行页面时它会抛出此错误,但我不知道为什么:

警告: mysqli_fetch_array()期望参数1为mysqli_result,第234行的C:\ wamp\www\SAMS\record.php中给出布尔值

这是我的查询:

$data = "SELECT *, (SELECT SUM(studAtt_endTime - studAtt_startTime) FROM studentAttendance WHERE studAtt_status='0')
                FROM studentAttendance INNER JOIN student ON studentAttendance.student_stud_matric=student.stud_matric
                INNER JOIN course ON studentAttendance.course_course_code=course.course_code
                WHERE WHERE studentAttendance.course_course_code LIKE '%$_GET[course]%' GROUP BY student_stud_matric;";

小智.. 6

'WHERE'的查询有两倍.删除另一个.



1> 小智..:

'WHERE'的查询有两倍.删除另一个.

推荐阅读
手机用户2502852037
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有