我在 mysql 数据库中有一个包含此 json 内容的列:
{"section2":"303","section1":"302","section0":"301"}
我使用 Medoo 库。如何在 DB 中搜索 section1、section2、section3?
$database->select('Article', "*",[
"AND" => [
"section" => ?
]
])
)