1

在 SQL Server Report Builder 2.0 中,是否可以使用可用的标准函数来创建条件分组?

在我的数据集中,我有一些为特定字段返回 NULL 的行,我不希望它们包含在分组中。

样本数据集

ID    Description    Inventory    Purchase
 1    an inventory   inv1         null
 2    an inventory2  inv2         null
 3    a purchase     null         pur1

我希望分组在 ID 和 Inventory 上,但排除为空的项目。

4

1 回答 1

0

从外观上看,您只需要在WHERE查询的子句中添加一个条件,如下所示:

SELECT …
FROM   …
WHERE  …
  AND  Inventory IS NOT NULL
GROUP BY
  ID,
  Inventory

当然,除非我错过了什么。

于 2012-05-31T17:11:56.347 回答