How to select from database using explode – Mysql
I want export data from my SQL database. Simply use : SELECT `id`,`tags` FROM `posts` This query give me those results : (1, 'handshake,ssl,windows'), (2, 'office,word,windows'), (3, 'site') I want results in this form: (1, 'handshake'), (1, 'ssl'), (1, 'windows'),…