Brent Pennington
12/11/2024, 10:01 PMMoises Morales
12/11/2024, 10:18 PM""
) represent unassigned values, you might just need to add WHERE {Participation user_id} = ""
.
It is also possible to create an SQL dataset where you could pre-calculate this and add the projects without a user_id as a standalone attribute, e.g.:
SELECT project_name
FROM projects p
WHERE NOT EXISTS (
SELECT 1
FROM participation pa
WHERE pa.project_id = p.project_id
AND pa.user_id IS NOT NULL
);
Michal Hauzírek
12/12/2024, 9:51 AMBrent Pennington
12/12/2024, 3:21 PMMoises Morales
01/02/2025, 12:57 PM