gsheets-db-api
gsheets-db-api copied to clipboard
Handle `COUNT(*)` outside of `SELECT`
The CountStar processor should handle more cases, eg:
SELECT
country
, COUNT(*)
FROM
table
WHERE
name = 'John'
GROUP BY
country
HAVING
COUNT(*) > 100
Same for ORDER BY.