PostgreSQL/Select Query/Expressions

Материал из SQL эксперт
Версия от 10:14, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Using expressions

postgres=# -- Using expressions
postgres=#
postgres=# CREATE FUNCTION a_function () RETURNS int4 AS "
postgres"# DECLARE
postgres"#    an_integer int4;
postgres"# BEGIN
postgres"#    an_integer := 10 * 10;
postgres"#    return an_integer;
postgres"# END;
postgres"# " LANGUAGE "plpgsql";
CREATE FUNCTION
postgres=#
postgres=#
postgres=# SELECT a_function() AS output;
 output
--------
    100
(1 row)
postgres=#
postgres=# drop function a_function();
DROP FUNCTION
postgres=#
postgres=#