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.
Collations
Supported by ✅ Open Source Edition ✅ Express Edition ✅ Professional Edition ✅ Enterprise Edition
                                        Many databases support "collations", which defines the sort order on character data types, such as VARCHAR.
                                    
Such databases usually allow for specifying:
- System-wide default collations
 - Session-wide default collations
 - Per-table specific default collations
 - Per-column specific default collations
 - Per-usage specific collation
 
The actual implementation is vendor-specific, including the way the above defaults override each other.
                                        To accommodate most use-cases jOOQ 3.11 introduced the org.jooq.Collation type, which can be attached to a org.jooq.DataType through DataType.collate(Collation), or to a org.jooq.Field through Field.collate(Collation), for example:
                                    
SELECT * FROM book ORDER BY title COLLATE utf8_bin
create.selectFrom(BOOK)
      .orderBy(BOOK.TITLE.collate("utf8_bin"))
      .fetch();
        
Feedback
Do you have any feedback about this page? We'd love to hear it!