内部预留字段 sql执行问题

This commit is contained in:
2024-12-09 13:59:44 +08:00
parent 32dcd1573e
commit 3eeaa2b947
3 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@
SELECT task.*,
reward.number as number
FROM task_center_reward reward
INNER JOIN task_center task ON reward.task_id = task.id and task.show = 1
INNER JOIN task_center task ON reward.task_id = task.id and task.shows = 1
where reward.type = 9
and user_id = #{userId}
</select>