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+"%';
Derby supports + for string concatenation.
Use
||
to concatenate strings instead of usingconcat
funcation. For more details view this.