Formatting fix for ASCII table with data

pull/7/head
David André 2015-11-16 23:58:26 +01:00
parent ed5e347945
commit 55a2f1ae28
1 changed files with 2 additions and 0 deletions

View File

@ -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 |
+----------------+----------------------------------+------+
```