fix sql syntax in README.md

This commit is contained in:
lovasoa
2022-09-01 22:31:44 +02:00
parent 59b64c3bba
commit 37faeeaced
+1 -1
View File
@@ -48,7 +48,7 @@ FROM website;
SELECT
'chart' as component,
'Syracuse' as title, 'area' as type;
SELECT month AS x, FROM SUM(revenue) AS y
SELECT month AS x, SUM(revenue) AS y
FROM income GROUP BY month;
```