PostgreSQL/Select Query/Query Expressions — различия между версиями

Материал из SQL эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Текущая версия на 10:14, 26 мая 2010

Using expressions and constants

postgres=#
postgres=# -- Using expressions and constants
postgres=#
postgres=# SELECT 2 + 2, pi(), "PostgreSQL is more than a calculator!";
 ?column? |        pi        |               ?column?
----------+------------------+---------------------------------------
        4 | 3.14159265358979 | PostgreSQL is more than a calculator!
(1 row)
postgres=#