sql >> Database >  >> RDS >> PostgreSQL

PostgreSQL wiskundige functies

Hieronder vindt u een volledige lijst van wiskundige functies die beschikbaar zijn in PostgreSQL.

Deze zijn gerangschikt in de volgende vier categorieën:

  • Wiskundige functies
  • Willekeurige functies
  • Trigonometrische functies
  • Hyperbolische functies

Wiskundige functies

  • abs()
  • cbrt()
  • ceil()
  • ceiling()
  • degrees()
  • div()
  • exp()
  • floor()
  • ln()
  • log()
  • mod()
  • pi()
  • power()
  • radians()
  • round()
  • scale()
  • sign()
  • sqrt()
  • trunc()
  • width_bucket()

Willekeurige functies

  • random()
  • setseed()

Trigonometrische functies

Elke trigonometrische functie is beschikbaar in twee varianten; op radialen en graden gebaseerd.

Radialen

  • acos()
  • asin()
  • atan()
  • atan2()
  • cos()
  • cot()
  • sin()
  • tan()

Graden

  • acosd()
  • asind()
  • atand()
  • atan2d()
  • cosd()
  • cotd()
  • sind()
  • tand()

Hyperbolische functies

  • sinh()
  • cosh()
  • tanh()
  • asinh()
  • acosh()
  • atanh()

  1. Emoji-tekens opslaan in MySQL-database

  2. Prestatieoverwegingen voor tijdelijke gegevens in Oracle

  3. PostgreSQL-overerving met JPA, Hibernate

  4. Hoe Round() werkt in PostgreSQL