i have a problem here
is there a way to explode things up in sql query and make a group by after it ?
actually i want use exactly php explode-like function in a sql query, is there a way to do that ?
test{explode}test2{explode}test2{explode}test3{explode}test{explode}test
return :
test `count 3`
test2 `count 2`
test3 `count 1`
here's a sqlfiddle : http://sqlfiddle.com/#!2/b318d/1
mysqli_query($sqli,'SELECT * FROM test WHERE explode("{explode}",value) GROUP BY explodedResult');WHERE explode("{explode}",value)mean? What is it comparing it to?