PL/SQL 中的 min 函数
我想选择两个日期中的最小值,例如
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 PLSQL 中,
least
函数返回表达式列表中的最小值。In PLSQL, the
least
function returns the smallest value in a list of expressions.LEAST("ColumnName", _NumberOfRows)
示例:最少 5 行 =
LEAST(Price,5)
LEAST("ColumnName", _NumberOfRows)
Example: For the Minimum 5 Rows =
LEAST(Price,5)