Makumba - 在 where 子句上设置空

发布于 2024-10-23 23:47:48 字数 104 浏览 0 评论 0原文

我想知道是否有一种方法可以检查 mak:list 的 where 子句中是否设置为空。

我想避免必须 mak:list 有问题的集合只是为了 mak:lastCount 其大小。

I'm wondering if there's a way to check for set emptiness in a mak:list's where clause.

I'd like to avoid having to mak:list the set in question just to mak:lastCount its size.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

伪心 2024-10-30 23:47:48

是的,因为您可以在 WHERE 条件中使用子查询。

使用来自 http://www.makumba.org/page/DataModelHowto(即公司)的数据定义.Company 拥有一个集合,

suppliers = set company.Company

您可以执行类似的操作,

<mak:list from="company.Company c" where="(SELECT count(s) FROM c.suppliers s) > 0">
....
</mak:list>

您也可以将其定义为 MDD 中的函数,例如 as

hasSuppliers() { (SELECT count(s) FROM suppliers s) > 0 }

,然后在您的中使用它。作为

<mak:list from="general.Company c" WHERE="c.hasSuppliers()">
....
</mak:list>

Yes, as you can use subqueries in the WHERE condition.

Using the data definitions from http://www.makumba.org/page/DataModelHowto, i.e. company.Company with a set

suppliers = set company.Company

you can do something like

<mak:list from="company.Company c" where="(SELECT count(s) FROM c.suppliers s) > 0">
....
</mak:list>

You can also define this as a function in the MDD, e.g. as

hasSuppliers() { (SELECT count(s) FROM suppliers s) > 0 }

and then use it in your <mak:list> as

<mak:list from="general.Company c" WHERE="c.hasSuppliers()">
....
</mak:list>
陈年往事 2024-10-30 23:47:48

hasSuppliers() 可以简单地定义为

hasSuppliers(){exists(FROM suppliers s)}

hasSuppliers() can be defined simply as

hasSuppliers(){exists(FROM suppliers s)}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文