Uses of Class
org.springframework.data.relational.core.sql.SimpleFunction
Packages that use SimpleFunction
Package
Description
Dialects abstract the SQL dialect of the underlying database.
Statement Builder implementation.
-
Uses of SimpleFunction in org.springframework.data.relational.core.dialect
Methods in org.springframework.data.relational.core.dialect that return SimpleFunctionModifier and TypeMethodDescriptiondefault SimpleFunctionDialect.getExistsFunction()Provide a SQL function that is suitable for implementing an exists-query.PostgresDialect.getExistsFunction() -
Uses of SimpleFunction in org.springframework.data.relational.core.sql
Methods in org.springframework.data.relational.core.sql that return SimpleFunctionModifier and TypeMethodDescriptionExpose this function result under a columnalias.SimpleFunction.as(SqlIdentifier alias) Expose this function result under a columnalias.static SimpleFunctionFunctions.coalesce(Expression... expressions) Creates a newCOALESCEfunction.static SimpleFunctionFunctions.count(Collection<? extends Expression> columns) Creates a newCOUNTfunction.static SimpleFunctionFunctions.count(Expression... columns) Creates a newCOUNTfunction.static SimpleFunctionSimpleFunction.create(String functionName, List<? extends Expression> expressions) static SimpleFunctionFunctions.greatest(List<? extends Expression> expressions) Creates a newGREATESTfunction.static SimpleFunctionFunctions.greatest(Expression... expressions) Creates a newGREATESTfunction.static SimpleFunctionFunctions.least(Expression... expressions) Creates a newLEASTfunction.static SimpleFunctionFunctions.lower(Expression expression) Creates a newLOWERfunction.static SimpleFunctionFunctions.upper(Expression expression) Creates a newUPPERfunction.