Post #4507159
2026-08-09 03:16 UTC
Nah, this could be a simple SQL statement with the right data source.
SELECT
v.ssn,
terrorist = TRUE
FROM citizens v
INNER JOIN voting_history h
ON v.ssn = h.ssn
WHERE h.party_affiliation = 'Democrat';
Replies (1)
-
@l3mming@lemmy.world 2026-08-09 04:22
Using ‘v’ to alias the citizens table was an interesting choice…