SELECT失败。 3504:选定的非聚合值必须是关联组的一部分

时间:2013-07-10 14:06:01

标签: teradata

我正在尝试运行以下查询:

SELECT  vtiger_products.productcategory AS "Product Category",
        SUM(vtiger_inventoryproductrel.quantity) AS "Line Item Qt"
  FROM bi_batch.vtiger_inventoryproductrel
       INNER JOIN bi_batch.vtiger_products
       ON vtiger_inventoryproductrel.productid

1 个答案:

答案 0 :(得分:0)

看起来你需要一个group by子句,你没有一个非聚合列。尝试通过vtiger_products.productcategory"

添加" group