From 55a2f1ae284454b611a68ff68d3f2df281a3c66d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Andr=C3=A9?= Date: Mon, 16 Nov 2015 23:58:26 +0100 Subject: [PATCH] Formatting fix for ASCII table with data --- administration/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/administration/README.md b/administration/README.md index 207f847..645177c 100644 --- a/administration/README.md +++ b/administration/README.md @@ -361,6 +361,7 @@ select ip,email,count(id) as c from logs WHERE ip IS NOT NULL group by ip,email ``` This will give you a top 10 table per ip and username: +``` +----------------+----------------------------------+------+ | ip | email | c | +----------------+----------------------------------+------+ @@ -369,3 +370,4 @@ This will give you a top 10 table per ip and username: | 9.10.11.12 | fred@somewhere.eu | 1317 | | 13.14.15.16 | SYSTEM | 16 | +----------------+----------------------------------+------+ +```