mysql中json数据是否为空判断

mysql中json数据是否为空判断

  • 对json数据字段,使用JSON_TYPE函数

对json数据字段,使用JSON_TYPE函数

官方文档地址:https://dev.mysql.com/doc/refman/5.7/en/json-attribute-functions.html#function_json-type

可以查询json的数据类型

SELECT JSON_TYPE(a.decoration), a.decoration FROM 表名 a WHERE JSON_TYPE(a.decoration) != 'NULL'

mysql中json数据是否为空判断_第1张图片

SELECT JSON_TYPE(a.decoration), a.decoration FROM 表名 a WHERE JSON_TYPE(a.decoration) = 'NULL'

mysql中json数据是否为空判断_第2张图片

你可能感兴趣的:(mysql)