108 | to 'RGENTINA'. TRIM(TRAILING 'A' FROM 'ARGENTINA') is evaluated to 'ARGENTIN'. CONCAT - String Concatenation The CONCAT(str1, str2, ...) function returns the concatenation of the specified strings. For example: CONCAT('Serbia', ' and ', 'Montenegro') is evaluated to 'Serbia and Montenegro'. SUBSTRING |
94 | Method javax.persistence.criteria.CriteriaBuilder Expression<String> concat( Expression<String> x, Expression<String> y ) Create an expression for string concatenation. Parameters: x - string expression y - string expression Returns: expression corresponding to concatenation Since: JPA 2.0 |
94 | Method javax.persistence.criteria.CriteriaBuilder Expression<String> concat( String x, Expression<String> y ) Create an expression for string concatenation. Parameters: x - string y - string expression Returns: expression corresponding to concatenation Since: JPA 2.0 |
94 | Method javax.persistence.criteria.CriteriaBuilder Expression<String> concat( Expression<String> x, String y ) Create an expression for string concatenation. Parameters: x - string expression y - string Returns: expression corresponding to concatenation Since: JPA 2.0 |
94 | Method javax.persistence.criteria.CriteriaBuilder Expression<T> concat( Expression<T> x, Expression<T> y ) Create an expression for string concatenation. Parameters: x - string expression y - string expression Returns: expression corresponding to concatenation Since: JPA 2.0 |
27 | , CHARACTER_LENGTH, CLASS, COALESCE, CONCAT, COUNT, CURRENT_DATE, CURRENT_TIME, CURRENT_TIMESTAMP |
27 | & functions (LIKE, CONCAT, TRIM, SUBSTRING, ...). JPQL collection operators & functions (IS EMPTY, MEMBER |
27 | , quot, mod, abs, neg, sqrt). String expressions (like, length, locate, lower, upper, concat, substring |
27 | , sqrt). String expressions (like, length, locate, lower, upper, concat, substring, ...). Data |
14 | - expression Returns: coalesce expression Since: JPA 2.0 Expression<String> concat( Expression<String> x ... Since: JPA 2.0 Expression<String> concat(String x, Expression<String> y) Create an expression for string ... expression Returns: expression corresponding to concatenation Since: JPA 2.0 Expression<String> concat |