From b4b8b37be29095d0f6c0d468ea3b62067b56c326 Mon Sep 17 00:00:00 2001 From: Juarez Bochi Date: Tue, 10 Mar 2015 20:15:07 -0300 Subject: [PATCH] Fix table name on comparison with SQL All the other examples use the table name "tips" --- doc/source/comparison_with_sql.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/comparison_with_sql.rst b/doc/source/comparison_with_sql.rst index 371875d9996f9..5dc083db7d147 100644 --- a/doc/source/comparison_with_sql.rst +++ b/doc/source/comparison_with_sql.rst @@ -204,7 +204,7 @@ Grouping by more than one column is done by passing a list of columns to the .. code-block:: sql SELECT smoker, day, COUNT(*), AVG(tip) - FROM tip + FROM tips GROUP BY smoker, day; /* smoker day