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

CURRENT_SCHEMA

Applies to ✅ Open Source Edition   ✅ Express Edition   ✅ Professional Edition   ✅ Enterprise Edition

The CURRENT_SCHEMA() function produces the dialect dependent expression to produce the current default schema for the JDBC connection.

SELECT current_schema;
create.select(currentSchema()).fetch();

The result being, for example

+----------------+
| current_schema |
+----------------+
| public         |
+----------------+

Dialect support

This example using jOOQ:

currentSchema()

Translates to the following dialect specific expressions:

-- AURORA_MYSQL, MARIADB, MEMSQL, MYSQL
DATABASE()

-- AURORA_POSTGRES, COCKROACHDB, DB2, HSQLDB, POSTGRES, YUGABYTEDB
CURRENT_SCHEMA

-- DERBY
CURRENT SCHEMA

-- FIREBIRD, SQLITE
''

-- H2
SCHEMA()

-- ORACLE
user

-- SNOWFLAKE, VERTICA
CURRENT_SCHEMA()

-- SQLDATAWAREHOUSE, SQLSERVER
schema_name()

-- TERADATA
DATABASE

-- ACCESS, ASE, BIGQUERY, DUCKDB, EXASOL, HANA, INFORMIX, REDSHIFT, SYBASE, TRINO
/* UNSUPPORTED */

(These are currently generated with jOOQ 3.19, see #10141), or translate your own on our website

Feedback

Do you have any feedback about this page? We'd love to hear it!

The jOOQ Logo