returns Integer 类型的 High() 函数

A function that returns the High() of an Integer type

Firebird 中是否有 returns 整数类型 (Integer, BigInt) 的 High() 或 Low() 的函数?

一个例子可能是...

SELECT HIGH(integer) FROM RDB$DATABASE

将导致

2147483647

没有。获得它的唯一方法是编写自定义 UDF。

没有,没有这个功能。这些值是固定的,因此几乎不需要这样的功能。 INTEGER 的最大值总是 231 - 1,BIGINT 的最大值总是 263 - 1.