'Special postgres operators

From the docs on Operators, it says:

An operator is a sequence of up to NAMEDATALEN-1 (31 by default) characters from the following list:

+ - * / < > = ~ ! @ # % ^ & | ` ? $

I've familiar with the more standard arithmetic and bitwise operators, but what are the following operators in Postgres?

  • ! (is this just when doing not equals checks -- this != that ?
  • @
  • ` (how does backtick work? I've used it in MySQL to quote fields, but never in Postgres)
  • $
  • #


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source