PostgreSQL/Select Query/Query Expressions — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Версия 13:45, 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=#