How do I write the following SQL with honeysql?
count(*) OVER (PARTITION BY id) AS foobarI believe this would help: https://github.com/seancorfield/honeysql/blob/a3ef21548520636168a970d780ff46a4be4fa002/doc/clause-reference.md#window-partition-by-and-over
yes, thank you!