ここで私はビューを作成しています
CREATE VIEW customerusage
AS
SELECT group_concat(customername SEPARATOR ' ||| '),
customerlocation,
customerid,
product
FROM customer AS c
INNER JOIN product AS p ON (c.product_id = c.product_id)
GROUP BY product_id
このテーブルは毎日更新する必要がありますが、毎分更新するのは細かすぎます。どうすれば更新できますか。ビュー以外のオプションはありますか?