SELECT series_id, GROUP_CONCAT(auth_name SEPARATOR '; ') AS auths
FROM Authors
NATURAL JOIN `Series-Authors`
GROUP BY series_id
will be considered an "Unmatched parentheses" error with red squiggles everywhere because the semicolumn ; used as a separator here is considered the end of the query, which causes the closing parenthesis to be in 'another' query.
I'm working in python 3.10, inline sql syntax 2.16.0.
Something like :
will be considered an "Unmatched parentheses" error with red squiggles everywhere because the semicolumn
;
used as a separator here is considered the end of the query, which causes the closing parenthesis to be in 'another' query.I'm working in python 3.10, inline sql syntax 2.16.0.