I have 3 variables that they are text. It can be a sentence, not just a word.
Example:
Variable1: Hey, how are you?. Variable1: I am fine. Variable1: You are nice
I am running this:
LOWER(CONCAT(COALESCE(title," "), COALESCE(hotel_positive," "), COALESCE(hotel_negative,"")))
Output:
Hey, how are you?.I am fine.You are nice
This is not right as if I have count the words (final goal here), "you?.I" or "fine.you" will come as 1 word.
Any idea on how to improve this?