drep94225 2015-04-21 13:41
浏览 154

如何将两个MySQL行合并为一个并计算结果?

Basically, I have a database with 10 exam types. Each type has two parts, and is updated as pass or fail. I need to list the total count of exams that have not been completed (both parts passed).

I've tried this and it returns the count if either part shows pass, not both.

$sql1 = $con->query("SELECT * FROM candidate_exams WHERE gID='1' AND canID='$canID' AND exResult='y' GROUP BY gEID");
$rowcount1 = 10 - mysqli_num_rows($sql1); 

'gID' is just an identifier that tracks what group these 10 exams come from, 'canID' is my candidate identifier, 'gEID' is my exam type.

  • 写回答

1条回答 默认 最新

  • dougu1045 2015-04-21 13:47
    关注
    SELECT COUNT(*) FROM tabele WHERE type_a = 'fail' OR type_b = 'fail'
    

    something like this? It would help a lot to see your table structure to be able to answer this question properly.

    评论

报告相同问题?

悬赏问题

  • ¥15 outlook无法配置成功
  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题