diff --git a/jOOQ/src/main/java/org/jooq/impl/Factory.java b/jOOQ/src/main/java/org/jooq/impl/Factory.java
index b0e8aa8d71..b6d64b402c 100644
--- a/jOOQ/src/main/java/org/jooq/impl/Factory.java
+++ b/jOOQ/src/main/java/org/jooq/impl/Factory.java
@@ -3997,9 +3997,24 @@ public class Factory {
/**
* Get the MySQL-specific MD5() function
*
- * Other databases may simulate this, where available + * These are the implementations for various databases: + *
+ *
| Database | + *Implementation | + *
|---|---|
| MySQL | + *MD5( ... ) |
+ *
| Oracle | + *LOWER(RAWTOHEX(SYS.DBMS_OBFUSCATION_TOOLKIT.MD5(INPUT_STRING => ...)) |
+ *
MD5() function
* - * Other databases may simulate this, where available + * These are the implementations for various databases: + *
+ *
| Database | + *Implementation | + *
|---|---|
| MySQL | + *MD5( ... ) |
+ *
| Oracle | + *LOWER(RAWTOHEX(SYS.DBMS_OBFUSCATION_TOOLKIT.MD5(INPUT_STRING => ...)) |
+ *