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