Extract JSON elements from a JSON column (MariaDB, MySQL)

Code
-- tested with MySQL 5.7, MariaDB 10.2

SELECT JSON_EXTRACT(json_format, '$.name') as jname, JSON_EXTRACT(json_format, '$.status') as jstatus
  FROM history LIMIT 5
Result
jnamejstatus
"foo"5
"foo"5
"foo"2
"foo"1
"foo"1


Used Versions
PHP 8.2, Laminas MVC 3.2, Symfony 5.2, Laravel 8.28, PHPUnit 9.5, Doctrine ORM 2.8