Uses of Interface
org.springframework.data.relational.core.dialect.OrderByNullPrecedence
Packages that use OrderByNullPrecedence
Package
Description
Dialects abstract the SQL dialect of the underlying database.
-
Uses of OrderByNullPrecedence in org.springframework.data.relational.core.dialect
Classes in org.springframework.data.relational.core.dialect that implement OrderByNullPrecedenceModifier and TypeClassDescriptionstatic classAnOrderByNullPrecedenceimplementation for databases conforming to the SQL standard which usesNULLS FIRSTandNULLS LASTinORDER BYsort expressions to make null values appear before or after non-null values in the result set.Fields in org.springframework.data.relational.core.dialect declared as OrderByNullPrecedenceModifier and TypeFieldDescriptionstatic final OrderByNullPrecedenceOrderByNullPrecedence.NONEAnOrderByNullPrecedencethat can be used for databases that do not support the SQL standard usage ofNULLS FIRSTandNULLS LASTinORDER BYsort expressions to control where null values appear respective to non-null values in the result set.static final OrderByNullPrecedenceOrderByNullPrecedence.SQL_STANDARDAnOrderByNullPrecedencethat can be used for databases conforming to the SQL standard which usesNULLS FIRSTandNULLS LASTinORDER BYsort expressions to make null values appear before or after non-null values in the result set.Methods in org.springframework.data.relational.core.dialect that return OrderByNullPrecedenceModifier and TypeMethodDescriptiondefault OrderByNullPrecedenceDialect.orderByNullHandling()Return theOrderByNullPrecedenceused by this dialect.MySqlDialect.orderByNullHandling()SqlServerDialect.orderByNullHandling()