我搜索了很多,但我找不到答案或附近的东西。
我有一张这样的桌子:
id int(11) NO PRI auto_increment
attribute_id int(11) YES
user_id int(11) YES
result int(11) YES
x10 int(11) YES
我需要每个 5 个结果attribute_id
。
attribute_id
可以是任何数字,所以首先,我需要检查attribute_id
,接下来我必须检查每个属性 ID 的结果。
如果没有 MySQL 以外的任何编程语言,我无法找到如何做到这一点,但我知道你可以。
例子:
attribute_id result
1 200
1 149
1 123
2 322
2 321
2 300
3 ...
3 ...
等等。