# SQLITE sait interroger une donnée en json. # si le champ est un champ text qui contient du json, on peut directement requeté sur le champ =) # et on peut aussi reformater un champ date json = json_extract('{"a":2,"c":[4,5,{"f":7}]}', '$') print(json) # {"a":2,"c":[4,5,{"f":7}]}