I have table workers and table worksheets.
This two tables are linked by column "worker_id"
In worksheets we have some data about workers as birthday, sex and other. This data is saved in one column as serialized array
something like:
{"photo":"image.png","sex":"male","birthday":"14.09.2018","phone":"8(777)777-7778"}
My task is to get workers over 20 years old and under 30 years old for example
How can I do it? Also in birthday key may be null values
I will be glad of any help