📜  如何在sql代码示例中使用聚合函数

📅  最后修改于: 2022-03-11 15:05:19.910000             🧑  作者: Mango

代码示例1
This is the example.Aggregate function is AVG.production.products is the table.

SELECT
    AVG(list_price) avg_product_price
FROM
    production.products;