Count the number of records per week

suggest change
SELECT date_trunc(week, <>) AS Week , count(*) 
FROM <> 
GROUP BY 1 
ORDER BY 1;

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents