Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Derby: CONCAT equivalent

Tags:

java

derby

javadb

Good day!

What is the equivalent function of Derby/Java DB to the CONCAT function of MySQL?
I tried using CONCAT to Derby but it commits an error.

like image 286
Ace Eusebio Avatar asked Apr 18 '12 06:04

Ace Eusebio


1 Answers

I believe you can concatenate two string with ||

Derby Built-in function reference - concatenation

like image 108
Rangi Lin Avatar answered Sep 24 '22 15:09

Rangi Lin