From 08d6474008b85e2517ac36a1978368195381b0b5 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Fri, 2 Jun 2017 09:16:17 -0500 Subject: [PATCH] Add missing semicolon --- mysql/list-databases-and-tables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysql/list-databases-and-tables.md b/mysql/list-databases-and-tables.md index 09bc8bd..876ab52 100644 --- a/mysql/list-databases-and-tables.md +++ b/mysql/list-databases-and-tables.md @@ -18,7 +18,7 @@ If you are curious about the tables in a particular database, you can list them by specifying the database's name: ```sql -> show tables in my_app_dev +> show tables in my_app_dev; +------------------------------+ | Tables_in_my_app_dev | +------------------------------+