tvl-depot/snippets/sql-mode/count(*) group by
2019-07-09 17:50:51 -04:00

5 lines
128 B
Text

# -*- mode: snippet -*-
# name: count(*) group by
# key: countby
# --
SELECT count(*), ${1:column} FROM ${2:table} GROUP BY $1;