I have a question about the concat function in PostgreSQL.
This sentence works well in MySQL:
SELECT * FROM words WHERE CONCAT (word,' ',gender,' ',semantic) LIKE '%"+value+"%'.
Value is a variable that changes in my Java program.
But I need to work the same in postgresql. How can I kann concatenate inside a WHERE clause using postgres, given the variable "value" that will change its value?
source share