MSCEWI2026
Json fields are inserted in an ascending ordering
Severity
Description
Code Example
Input:
CREATE TABLE BookStores(
id INTEGER,
Store JSON(2500) CHARACTER SET LATIN NOT NULL
);
INSERT INTO BookStores (id, Store) VALUES(1, '{
"firstName" : "Joaquin",
"lastName" : "Jimenez",
"age" : 22
}');
select * from BookStores;id|Store |
--+---------------------------------------------------------------------+
1|{ "firstName" : "Joaquin", "lastName" : "Jimenez", "age" : 22}|Output:
Recommendations
Last updated
