我有一个查询,其中包含一些产品有很多产品并且列表会增长
SELECT pid, link, created_at FROM products ORDER BY timestamp DESC
但我还有另一个表,其中包含一个pid
和rating
字段,它pid
是产品表的链接。
SELECT AVG(rating) FROM ratings GROUP BY pid
我该如何查询,以便它会提取如下信息?
products.pid, products.link, products.created_at, AVG(ratings.rating)