mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 09:39:57 +00:00
7 lines
164 B
SQL
7 lines
164 B
SQL
CREATE VIEW shopping_lists_view
|
|
AS
|
|
SELECT
|
|
*,
|
|
(SELECT IFNULL(COUNT(*), 0) FROM shopping_list WHERE shopping_list_id = sl.id) AS item_count
|
|
FROM shopping_lists sl;
|