在 MySQL 中为 JSON 类型列设置默认值?
要设置默认值,请使用 DEFAULT 约束,如下面的语法所示 −
alter table yourTableName modify column yourColumnName JSON NOT NULL DEFAULT ( JSON_OBJECT() );
让我们创建一个表格 −
mysql> create table demo24 −> ( −> employee_information text −> ) −> ; Query OK, 0 rows affected (1.43 sec)
以下是表格的描述。查询如下 −
mysql> desc demo24;
这将产生以下输出 −
+----------------------+------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +----------------------+------+------+-----+---------+-------+ | employee_information | text | YES | | NULL | | +----------------------+------+------+-----+---------+-------+ 1 row in set (0.00 sec)
以下查询将其更改为具有默认值的 JSON 数据类型 −
mysql> alter table demo24 modify column employee_information JSON NOT NULL DEFAULT ( JSON_OBJECT() ); Query OK, 0 rows affected (3.03 sec) Records: 0 Duplicates: 0 Warnings: 0
现在检查表格描述。查询如下 −
mysql> desc demo24;
这将产生以下输出 −
+----------------------+------+------+-----+---------------+-------------------+ | Field | Type | Null | Key | Default | Extra | +----------------------+------+------+-----+---------------+-------------------+ | employee_information | json | NO | | json_object() | DEFAULT_GENERATED | +----------------------+------+------+-----+---------------+-------------------+ 1 row in set (0.00 sec)
使用插入命令向表格中插入一些记录 −
mysql> insert into demo24 values();; Query OK, 1 row affected (0.10 sec)
使用 select 语句显示表格中的记录 −
mysql> select *from demo24;
这将产生以下输出 −
+----------------------+ | employee_information | +----------------------+ | {} | +----------------------+ 1 row in set (0.00 sec)
广告