PL/SQL 中的 min 函数

发布于 2024-10-31 13:45:11 字数 286 浏览 1 评论 0原文

我想选择两个日期中的最小值,例如

c := min(a,b);

它占用编译器错误:

错误(20,10):PLS-00103:遇到 当期望其中之一时,符号“,” 以下:
。 ( ) * @ % & - + / at mod 余数 rem ||多集

我们可以在 SQL 中使用聚合函数 Min 。我不知道是否有类似的功能可以使用我的pl/sql?

I want to choose the min value in two date ,such as

c := min(a,b);

It occupy compiler error :

Error(20,10): PLS-00103: Encountered
the symbol "," when expecting one of
the following:
. ( ) * @ % & - + /
at mod remainder rem || multiset

I know we can use aggregate function Min in the SQL. I dan't whether there is the similar func i can use i pl/sql?

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

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

发布评论

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

评论(2

信愁 2024-11-07 13:45:11

在 PLSQL 中,least 函数返回表达式列表中的最小值。

In PLSQL, the least function returns the smallest value in a list of expressions.

抠脚大汉 2024-11-07 13:45:11

LEAST("ColumnName", _NumberOfRows)

示例:最少 5 行 = LEAST(Price,5)

LEAST("ColumnName", _NumberOfRows)

Example: For the Minimum 5 Rows = LEAST(Price,5)

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