unserialize value in database MySQL itself .by function of MySQL or any how.i dont want to use Php function unserialize()
table have suppose following serialized stored value.
want to decode to back value and grab some content without use of php but at database MySQL
reason behind to decode at database level because i want to unserialize value and use it in same query . so single query do all thing .
normally what we do
1. we grab the value from database
2. than unserialize it in php
3.again use it to get some entry from database.
i want to make a single query which get data , unserialize it and again use it to same table/database.
Read more