Need to write a correct query in Derby

66 Views Asked by At

I need to filter data in Java app which get data from Derdy. I created a table in Derby and use this query below which is runnable for MySQL but not for Derby. Can anybody have idea how to make the query compatible with Derby? With this query I need to press button Search and it gives me resuls in JPanel.

Select * FROM fruits where concat (apple, orange, banana) LIKE '%"+ValToSearch+"%';
1

There are 1 best solutions below

2
On

Derby supports + for string concatenation.

Concatenation

The concatenation operator, ||, concatenates its right operand to the end of its left operand. It operates on a character or bit expression.

Because all built-in data types are implicitly converted to strings, this function can act on all built-in data types.

Use || to concatenate strings instead of using concat funcation. For more details view this.