From 427bfd333259f79b0859b27e42964cd1fa6e00ab Mon Sep 17 00:00:00 2001 From: Shane Jaroch Date: Sun, 24 Jul 2022 14:31:01 -0400 Subject: [PATCH] pycharm inspection, small fixes --- sql/functions.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sql/functions.sql b/sql/functions.sql index d669b63..d6e5c92 100644 --- a/sql/functions.sql +++ b/sql/functions.sql @@ -7,9 +7,9 @@ SELECT name, COUNT(recipe_id) AS n_foods, SUM(grams) AS grams, - created + recipe.created AS created FROM - recipes + recipe LEFT JOIN recipe_dat ON recipe_id = id GROUP BY id; -- 2.52.0