PostgreSQL/Select Query/Query Expressions

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

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=#