Is it possible to unserialize data in the mysql query at the run time? i don't want to use unserialize() function of php.
I need to fetch the value "mathematics" from the below serialized value saved in wp_postmeta table using mysql query.
a:4:{s:39:"wpcf-fields-checkboxes-option-223412915";s:7:"science";s:39:"wpcf-fields-checkboxes-option-499894518";s:10:"technology";s:40:"wpcf-fields-checkboxes-option-1474335177";s:11:"engineering";s:40:"wpcf-fields-checkboxes-option-1018405300";s:11:"mathematics";}
Array
(
[wpcf-fields-checkboxes-option-223412915] => science
[wpcf-fields-checkboxes-option-499894518] => technology
[wpcf-fields-checkboxes-option-1474335177] => engineering
[wpcf-fields-checkboxes-option-1018405300] => mathematics
)