Last active 1728394795

Revision 3507e3b733bd959ad8d2f67a957a714f586916b8

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