PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
-- Hint: use Ctrl+Enter for SQL autocomplete create table tbl ( str varchar(65) ); insert into tbl values ('02-01'), ('03-15'), ('06-03'); select json_arrayagg(str) as arr from tbl;
Copy Clear
Copy Format Clear
<?php $arr = [ 0 => '02-01', 1 => '03-15', 2 => '06-03' ]; echo json_encode($arr);
Show:  
Copy Clear