sql >> Database teknologi >  >> RDS >> Mysql

Nest i en Nest Json-model til SQL Table

du kan gøre det på denne måde:

In [1]: fn = r'D:\temp\.data\40454898.json'

In [2]: with open(fn) as f:
   ...:     data = json.load(f)
   ...:

In [14]: t = pd.io.json.json_normalize(data['Volumes'],
    ...:                               ['Attachments','Tags'],
    ...:                               [['Attachments', 'VolumeId'],
    ...:                                ['Attachments', 'InstanceId']])
    ...:

In [15]: t
Out[15]:
         Key              Value Attachments.InstanceId   Attachments.VolumeId
0       Name  DBJanitor-Private    i-1234567890abcdef0  vol-049df61146c4d7901
1      Owner          DBJanitor    i-1234567890abcdef0  vol-049df61146c4d7901
2    Product           Database    i-1234567890abcdef0  vol-049df61146c4d7901
3  Portfolio         DB Janitor    i-1234567890abcdef0  vol-049df61146c4d7901
4    Service         DB Service    i-1234567890abcdef0  vol-049df61146c4d7901

BEMÆRK:andet argument ['Attachments','Tags'] er en sti til vores indlejrede post (data['Values']->Attachments->Tags ) og tredje argument [['Attachments', 'VolumeId'], ['Attachments', 'InstanceId']] er en sti til ydre metadata (data['Values']->Attachments->VolumeId , data['Values']->Attachments->InstanceId )




  1. Sådan opdaterer du flere poster ved hjælp af peewee

  2. Sådan indtaster du binds for en parameter med flere værdier i SQL Developer

  3. SQLite Like() Funktion med eksempler

  4. MySQL:Hurtig opdeling af typer joinforbindelser