JPA concat operator

后端 未结 3 744
青春惊慌失措
青春惊慌失措 2020-12-30 20:11

Is there a JPA concat operator for string concatenation?

I know there is a JPA CONCAT function, however its ugly to use for concatenating multiple strin

3条回答
  •  [愿得一人]
    2020-12-30 21:04

    You can use JPA Concat function for multiple strings.

    For example:

    CONCAT(cola, colb, colc, cold)
    

提交回复
热议问题