云数据库 GAUSSDB-匿名块:示例

时间:2024-01-23 20:09:27

示例

下面列举了基本的匿名块程序:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
--空语句块
postgres=# BEGIN
     NULL; 
END;
/

--将信息打印到控制台:
postgres=# BEGIN
     dbe_output.print_line('hello world!'); 
END; 
/

--将变量内容打印到控制台:
postgres=# DECLARE      
     my_var VARCHAR2(30);  
BEGIN      
     my_var :='world';     
     dbe_output.print_line('hello'||my_var); 
END; 
/ 
support.huaweicloud.com/devg-v1-gaussdb/gaussdb_devg_0663.html