How can I find a value within a JSON array in MySQL? I am trying this option
https://sqlize.online/sql/mysql80/df842fcbe7d246262b65740c80668c4e/
create table tbl (id int, home json);
insert into tbl values
(1, '[
"1",
"2",
"3"
]');
select *
from tbl
where json_contains(home, '1');
but there are no results.