我正在读一本关于mysql的书,在其中一个例子中显示了以下代码,当我在mysql中尝试它时它不起作用
SELECT item_description, material, weight, sum(quantity)
FROM Products
GROUP BY ROLLUP(item_description, material, weight)
这是正确的语法吗?
我也发现正在做
SELECT item_description, material, weight, sum(quantity)
FROM Products
GROUP BY item_description, material, weight WITH ROLLUP;
工作,我想知道第一个代码是否正确以及是否正在执行 和第二个代码一样。