H2 Database 简明教程

H2 Database - Call

CALL 是一个属于 H2 数据库服务器的 SQL 命令。此命令用于计算一个简单的表达式。它以单列字段形式返回给定表达式的结果。当它返回一个结果数组时,数组中的每个元素将会显示为一个列值。

CALL is a SQL command which belongs to H2 database server. This command is used to calculate a simple expression. It returns the result of the given expression in a single column field. When it returns an array of results, then each element in the array is displayed as a column value.

Syntax

以下是 CALL 命令的通用语法。

Following is the generic syntax of the CALL command.

CALL expression;

我们可以在此语法中使用算术表达式。

We can use the arithmetic expression in this syntax.

Example

让我们通过使用 call 命令来执行一个算术表达式 (15 * 25) 并作为一个实例。

Let us take an example and execute an arithmetic expression (15 * 25) using call command.

CALL 15*25;

以上命令会产生以下输出。

The above command produces the following output.

375

375