mysql的json查询、coalesce函数、case when

mysql json 查询结果去掉双引号 “”

select json->'$.attr' from table;

select JSON_UNQUOTE(json_extract(json,'$.attr')) from table;

Mysql的coalesce函数

作用是将返回传入的参数中第一个非null的值

SELECT COALESCE(NULL, NULL, 1);
-- Return 1

MySQL的case when then

SQL> select u.id,u.name,
   (case u.sex
     when 1 then '男'
     when 2 then '女'
     else '空的'
     end
    )性别
 from users u;

你可能感兴趣的:(mysql的json查询、coalesce函数、case when)