Get Started With JSON_ARRAY() in MySQL
JSON_ARRAY()
MySQL provides this function to return a list of values in array format.
SELECT JSON_ARRAY(1,2,3);
SELECT JSON_ARRAY(1,'cherish','');
SELECT JSON_ARRAY();
SELECT JSON_ARRAY(1,'public',NULL);
Note: Even NULL value can be inserted into t...
csachdeva83.hashnode.dev2 min read