I have a json column in MySQL which contains a list of items for eg.
"style": {"style1", "style2", "style3", "style4", "style5"}
I want to search all the rows which contain the styles I specify through an array like IN clause like WHERE style IN(["style1", "style3"])
Is there any workaround or easy way to get this working?
Please help.. Thanks
Go to Source
Author: girish