right now I have a keyword array like: ['key1', 'key2', 'key3'.......] , the keyword can be number or character.
If I want to search in my table (postgres database), and find out all record contain any of keyword in that array, how can I do that?
For example: I got a table which has a column called name and a column called description
I need find all record that either name or description contains any keywords in that array.
thanks