Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2016-10-18 11:04:53 +0300
committerMichal Čihař <michal@cihar.com>2016-10-18 11:26:34 +0300
commit855899628a33a1d2d74bc0ef128f026e59d5457f (patch)
tree7797be45b15d55277be62a37ac7abcf56094abba /doc/charts.rst
parentfffbcd1969faa3e2d98e03ce24b5ed4432ce3024 (diff)
Specify we are using MySQL
Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'doc/charts.rst')
-rw-r--r--doc/charts.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/charts.rst b/doc/charts.rst
index 4117f9c682..618f0554ca 100644
--- a/doc/charts.rst
+++ b/doc/charts.rst
@@ -34,7 +34,7 @@ Pie chart
Query results for a simple pie chart can be generated with:
-.. code-block:: sql
+.. code-block:: mysql
SELECT 'Food' AS 'expense',
1250 AS 'amount' UNION
@@ -67,7 +67,7 @@ Both bar charts and column chats support stacking. Upon selecting one of these t
Query results for a simple bar or column chart can be generated with:
-.. code-block:: sql
+.. code-block:: mysql
SELECT
'ACADEMY DINOSAUR' AS 'title',
@@ -114,7 +114,7 @@ These charts can be used to illustrate trends in underlying data. Spline charts
Query results for a simple line, spline or timeline chart can be generated with:
-.. code-block:: sql
+.. code-block:: mysql
SELECT
DATE('2006-01-08') AS 'date',