PostgreSQL/Postgre SQL/plpgsql — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 10:13, 26 мая 2010
plpgsql is case insensitive
postgres=# CREATE FUNCTION "mixed" () RETURNS integer AS "
postgres"# DecLarE
postgres"# --assigns 1 to the oNe variable
postgres"# oNe IntEgER
postgres"# := 1;
postgres"#
postgres"# bEGiN
postgres"#
postgres"# --displays the value of oNe
postgres"# ReTUrn oNe;
postgres"# eNd;
postgres"# " LANGUAGE "plpgsql";
CREATE FUNCTION
postgres=#
postgres=# select mixed();
mixed
-------
1
(1 row)
postgres=#