Available in versions: Dev (3.21) | Latest (3.20) | 3.19 | 3.18 | 3.17 | 3.16 | 3.15 | 3.14 | 3.13 | 3.12 | 3.11

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.

TIME (Time)

Supported by ✅ Open Source Edition   ✅ Express Edition   ✅ Professional Edition   ✅ Enterprise Edition

The TIME data type represents a local time type, or java.sql.Time in Java, or Types.TIME in JDBC.

Some dialects support an explicit precision flag on this data type. If absent, the default is dialect specific.

DDL support

Dialect support

This example using jOOQ:

createTable("t").column("c", TIME)

Translates to the following dialect specific expressions:

Access, Informix, SQLite

CREATE TABLE t (
  c datetime
)

ASE, Sybase

CREATE TABLE t (
  c time NULL
)

Aurora MySQL, Aurora Postgres, BigQuery, CockroachDB, DB2, Derby, DuckDB, Exasol, Firebird, H2, HSQLDB, Hana, MariaDB, MemSQL, MySQL, Postgres, Redshift, SQLDataWarehouse, SQLServer, Snowflake, Teradata, Trino, Vertica, YugabyteDB

CREATE TABLE t (
  c time
)

ClickHouse

CREATE TABLE t (
  c Nullable(time)
)
ENGINE Log()

Databricks

CREATE TABLE t (
  c time
)
TBLPROPERTIES(
  'delta.columnMapping.mode' = 'name',
  'delta.feature.allowColumnDefaults' = 'supported'
)

Oracle

CREATE TABLE t (
  c timestamp
)
Generated with jOOQ 3.21. Support in older jOOQ versions may differ. Translate your own SQL on our website

Cast support

Dialect support

This example using jOOQ:

cast(field("c"), TIME)

Translates to the following dialect specific expressions:

Access

cdate(c)

ASE, Aurora MySQL, Aurora Postgres, BigQuery, CockroachDB, DB2, Databricks, Derby, DuckDB, Exasol, Firebird, H2, HSQLDB, Hana, MariaDB, MemSQL, MySQL, Postgres, Redshift, SQLDataWarehouse, SQLServer, Snowflake, Sybase, Teradata, Trino, Vertica, YugabyteDB

CAST(c AS time)

ClickHouse

CAST(c AS Nullable(time))

Informix

CAST(c AS datetime hour to second)

Oracle

CAST(c AS timestamp)

SQLite

CAST(c AS datetime)
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!

The jOOQ Logo