I have a column in a mysql DB with this json content:
{"section2":"303","section1":"302","section0":"301"}
I use Medoo library. How can I search section1, section2, section3 in DB?
$database->select('Article', "*",[
"AND" => [
"section" => ?
]
])
)