PostgreSQL/String Functions/Negation

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

Get negation

postgres=# SELECT ~ CAST("20" AS int8) AS "negation";
 negation
----------
      -21
(1 row)
postgres=#