我需要比较两个不同表的结果以获得出现的次数
我有一个包含 2 个表的数据库: 表 1 是条目(userID、number1、number2、number3、number4、number5、number6) 表 2 是结果(number1、number2、number3、number4、number5、number6)
Entries 表存储了为每个 userID 猜测的 6 个数字,并且已经有大约 1,200 行。 结果表存储 6 个数字,并且只有一行。
现在的问题是:
我需要生成一份报告 1. 将 Result 表中的 6 个数字与 Entries 表中的每一行进行比较 2. 统计用户猜对的数字。
例如, 如果结果是 1、2、3、4、5、6 并且 userA猜测了1,3,5,7,9,11,那么userA用户的正确猜测次数是3。 如果 userB 猜对了 2,8,11,12,13,24,则 userB 的正确猜测次数是 1。 如果 userC 猜测 23,24,25,26,27,28,则 userC 的正确猜测次数为 0。
因此,我的报告需要包含 1,200 行 2 列(userID 和 Correct_Number_of_Guesses)。
解决这个问题的最佳方法是什么?
I have a database with 2 tables:
Table 1 is Entries (userID, number1, number2, number3, number4, number5, number6)
Table 2 is Result (number1, number2, number3, number4, number5, number6)
The Entries table stores 6 numbers guessed for each userID and has about 1,200 rows already.
The Result table stores 6 numbers and has only one row.
The problem now is:
I need to generate a report that will
1. compare the 6 numbers in the Result table against each and every row of the Entries table
2. count the numbers a user guessed correctly.
For example,
if the Results were 1,2,3,4,5,6 and
userA guessed 1,3,5,7,9,11, then the correct number of guesses for userA user is 3.
If userB guessed 2,8,11,12,13,24, then the correct number of guesses for userB is 1.
If userC guesses 23,24,25,26,27,28, then the correct number of guesses for userC is 0.
Therefore my report needs to contain 1,200 rows with 2 columns (userID and Correct_Number_of_Guesses).
What is the best approach towards this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 MySQL IF 语法:
With MySQL IF syntax: