Here is how columns look like in my table:
VID | UID | title | description | featuredesc | keyword | ...
I would like to copy all "title" rows and turn them to keywords format in "keyword" rows.
title: This Is An Example Just For You
To
keyword: This,Is,An,Example,Just,For,You
And Also, I am trying to find a way to exclude the keywords that have less than 3 characters.
I Just need to keep Lowercase or Uppercase as it is.
keyword: This,Example,Just
It's not gonna be perfect but I want to make tag selection as clean as possible. Only from titles data.
I've been trying to write this SQL Query for a while but without success.
Hope to find help here.
Thanks.