You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: