MongoDB
 sql >> Baza danych >  >> NoSQL >> MongoDB

Mongodb dodanie nowego pola w istniejącym dokumencie, z określoną pozycją

Oto, co możesz zrobić, najpierw weź dokument jako dict , wtedy określimy indeks age a potem zrobimy trochę indeksowania, spójrz poniżej:

>>> dic = { "name": "user", "age" : "21", "designation": "Developer" }
>>> dic['university'] = 'ASU'
>>> dic
{'name': 'user', 'age': '21', 'designation': 'Developer', 'university': 'ASU'}

Dodano pole uniwersytetu, teraz dokonamy wymiany za pomocą dic.items() .

>>> i = list(dic.items())
>>> i
[('name', 'user'), ('age', '21'), ('designation', 'Developer'), ('university', 'ASU')]
#now we will acquire index of 'age' field
>>> index = [j for j in range(len(i)) if 'age' in i[j]][0] 
#it will return list of single val from which we will index the val for simplicity using [0]
>>> index
1
#insert the last element ('university') below the age field, so we need to increment the index
>>> i.insert(index+1,i[-1])
# then we will create dictionary by removing the last element which is already inserted below age
>>> dict(i[:-1])
{'name': 'user', 'age': '21', 'university': 'ASU', 'designation': 'Developer'}



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Docker mongo dla pojedynczego (tylko węzeł podstawowy) zestawu replik (do rozwoju)?

  2. JasperFillManager.fillReport i mongo?

  3. Polecenie przypomnienia przy użyciu MongoDB discord.py

  4. Jak uzyskać Data do przechowywania jako Data w MongoDB zamiast Int64?

  5. Jak używać typu dziesiętnego w MongoDB