github.com/dolthub/go-mysql-server@v0.18.0/enginetest/scriptgen/setup/scripts/jsontable (about) 1 exec 2 create table jsontable (pk smallint primary key, c1 varchar(20), c2 JSON, c3 JSON) 3 ---- 4 5 exec 6 insert into jsontable values 7 (1, 'row one', '[1,2]', '{"a": 2}'), 8 (2, 'row two', '[3,4]', '{"b": 2}'), 9 (3, 'row three', '[5,6]', '{"c": 2}'), 10 (4, 'row four', '[7,8]', '{"d": 2}') 11 ----