mirror of
https://github.com/grocy/grocy.git
synced 2026-07-04 21:26:59 -07: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;
|