假设,我们有 2 个相关的表
Table1:
id item_id(References to Table2:id) rating
Table2:
id title day position
我需要查询:对于所有 Table2 项目,检查 Table1:rating 并将其位置(ASC)放到 Table1:position 但仅针对特定日期。每天 - 新评级。1,2 ... 1000
Exmpl:
Table1:
id item_id rating
1 1 2
2 2 1555
3 3 280
我们需要得到:
Table2:
id title day position
1 test1 1 1
2 test2 1 3
3 test3 1 2
N .... 2 ...