Available in versions: Dev (3.20)
This documentation is for the unreleased development version of jOOQ. Click on the above version links to get this documentation for a supported version of jOOQ.
ST_Transform
Applies to ❌ Open Source Edition ✅ Express Edition ✅ Professional Edition ✅ Enterprise Edition
This function transforms a spatial value between different spatial reference systems.
create.select(stTransform(stGeomFromText("POINT (1 1)", 2249), 4326)).fetch();
The result being, for example
+----------------------------------------------+ | ST_Transform | +----------------------------------------------+ | POINT (-73.65138770881771 34.24438954333329) | +----------------------------------------------+
Dialect support
This example using jOOQ:
stTransform(geometry, 4326)
Translates to the following dialect specific expressions:
Aurora MySQL, Aurora Postgres, CockroachDB, MySQL, Postgres, Redshift, Snowflake
st_transform(geometry, 4326)
ASE, Access, BigQuery, ClickHouse, DB2, Derby, DuckDB, Exasol, Firebird, H2, HSQLDB, Hana, Informix, MariaDB, MemSQL, Oracle, SQLDataWarehouse, SQLServer, SQLite, Sybase, Teradata, Trino, Vertica, YugabyteDB
/* UNSUPPORTED */
Generated with jOOQ 3.20. Translate your own SQL on our website
Feedback
Do you have any feedback about this page? We'd love to hear it!