Is there a way to write this specific query:
- For topics in category (category id: 34) viewed by user(s) not in group (executive_board)
- Display user, display topic, display when viewed.
Is there a way to write this specific query:
Engraçado que isso foi atualizado automaticamente. E é relevante o suficiente novamente que eu adoraria se alguém tivesse uma resposta.
Sim, parece que você esperou um bom tempo por este. ![]()
Acho que algo como isto poderia funcionar? (Você precisaria encontrar o group_id para seu executive_board e trocá-lo pelo group_id = 3)
SELECT tu.user_id,
tu.topic_id,
tu.last_read_post_number,
tu.last_visited_at AS read
FROM topics t
LEFT OUTER JOIN topic_users tu ON t.id = tu.topic_id
WHERE tu.user_id NOT IN (SELECT user_id
FROM group_users
WHERE group_id = 3)
AND t.category_id = 34
AND tu.last_visited_at IS NOT NULL
ORDER BY tu.last_visited_at DESC
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.