add colon at the end of the query
parent
1a562a49a4
commit
c81c175c27
|
@ -61,7 +61,7 @@ SELECT user_id, SUM(total_events)
|
||||||
WHERE TO_TIMESTAMP(end_ts/1000) AT TIME ZONE 'UTC' > date_trunc('day', now() - interval '1 month')
|
WHERE TO_TIMESTAMP(end_ts/1000) AT TIME ZONE 'UTC' > date_trunc('day', now() - interval '1 month')
|
||||||
GROUP BY user_id
|
GROUP BY user_id
|
||||||
ORDER BY SUM(total_events) DESC
|
ORDER BY SUM(total_events) DESC
|
||||||
LIMIT 20
|
LIMIT 20;
|
||||||
```
|
```
|
||||||
|
|
||||||
## Show top 20 larger tables by storage size
|
## Show top 20 larger tables by storage size
|
||||||
|
|
Loading…
Reference in New Issue