ASINH
Supported by ✅ Open Source Edition ✅ Express Edition ✅ Professional Edition ✅ Enterprise Edition
The ASINH() function calculates the hyperbolic arc sine (or inverse hyperbolic sine) of a numeric value.
SELECT asinh(2);
create.select(asinh(2)).fetch();
The result being
+--------------------+ | asinh | +--------------------+ | 1.4436354751788103 | +--------------------+
Dialect support
This example using jOOQ:
asinh(x)
Translates to the following dialect specific expressions:
Access
log((x + sqr(((x * x) + 1))))
ASE, SQLDataWarehouse, SQLServer
log((x + sqrt((square(x) + 1))))
Aurora MySQL, DB2, DuckDB, Exasol, H2, HSQLDB, Hana, MariaDB, MemSQL, MySQL, Oracle, Redshift, Sybase, Vertica, YugabyteDB
ln((x + sqrt(((x * x) + 1))))
Aurora Postgres, BigQuery, ClickHouse, CockroachDB, Databricks, Firebird, Informix, Postgres, SQLite, Snowflake, Spanner, Teradata, Trino
asinh(x)
Generated with jOOQ 3.21. Support in older jOOQ versions may differ. Translate your own SQL on our website
Feedback
Do you have any feedback about this page? We'd love to hear it!