Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Wie erstelle ich ein JSON-Objekt in MySql mit einem booleschen Wert?

Dies scheint ein Bug in MySql zu sein .

Sie können dies jedoch mit cast(true as json) umgehen zB:

SELECT json_object(
    'name', 'Piotr',
    'likesMysql', if(4 MOD 2 = 0, cast(TRUE as json), cast(FALSE as json))
)