about summary refs log tree commit diff
path: root/users/glittershark/emacs.d/snippets/sql-mode/count(*) group by
diff options
context:
space:
mode:
Diffstat (limited to 'users/glittershark/emacs.d/snippets/sql-mode/count(*) group by')
-rw-r--r--users/glittershark/emacs.d/snippets/sql-mode/count(*) group by5
1 files changed, 0 insertions, 5 deletions
diff --git a/users/glittershark/emacs.d/snippets/sql-mode/count(*) group by b/users/glittershark/emacs.d/snippets/sql-mode/count(*) group by
deleted file mode 100644
index 6acc46ff39..0000000000
--- a/users/glittershark/emacs.d/snippets/sql-mode/count(*) group by
+++ /dev/null
@@ -1,5 +0,0 @@
-# -*- mode: snippet -*-
-# name: count(*) group by
-# key: countby
-# --
-SELECT count(*), ${1:column} FROM ${2:table} GROUP BY $1;