Menu

[r8320]: / trunk / database / create_postgresql_11.sql  Maximize  Restore  History

Download this file

23 lines (21 with data), 750 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*==============================================================*/
/* Database name: PostgreSql */
/* DBMS name: PostgreSQL 11 and up */
/* Created on: 31.10.2019 04:15 */
/*==============================================================*/
/*==============================================================*/
/* PROCEDURE : PROC_ABTEST */
/*==============================================================*/
CREATE PROCEDURE "PROC_ABTEST"(
p1 integer,
p2 integer,
p3 varchar,
inout p4 integer,
inout p5 varchar
)
LANGUAGE 'plpgsql' AS $$
BEGIN
p4 = p1 * 10 + p2;
p5 = p3 || p3;
END;
$$;
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.