Notice
Recent Posts
Recent Comments
Link
| ์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
Tags
- Spring
- ์ธ๋ผ์ธ๋ทฐ
- JavaScript
- Ajax
- order by
- SQL
- ๋ฐฑํฑ
- ๋ฐฐ์ด
- ๋ช ๋ น์ด
- ํ๋ก๊ทธ๋๋จธ์ค
- ํจ์
- ์ฝํ
- DATE_FORMAT
- like
- ํ ์ด๋ธ
- ์๋ฐ์คํฌ๋ฆฝํธ
- oracle
- ๋ฆฌ๋ ์ค
- Update
- ๋์ ํ ์ด๋ธ
- ๋์ปค
- ์ปจํธ๋กค๋ฌ
- select
- optionํ๊ทธ
- ๋์
- JSP
- JS
- post๋ฐฉ์
- MySQL
- ๋ณ์
Archives
- Today
- Total
bom's happy life
DB์์ ์ ๋ณด ๊ฐ์ ธ์ค๊ธฐ ์ฝ๋์ฐธ๊ณ ๋ณธ๋ฌธ
Deveolpment Study๐๏ธ/Databases
DB์์ ์ ๋ณด ๊ฐ์ ธ์ค๊ธฐ ์ฝ๋์ฐธ๊ณ
bompeach 2022. 6. 17. 10:58/์ฝ๋ ์ฐธ๊ณ ํด์ ์ฌ์ฉํ๊ธฐ/
app.py(์๋ฒ)์ ์ฝ๋๋ฅผ ๋ฃ์ด์ฃผ๋ ๊ฒ. (html์๋)
from pymongo import MongoClient
client = MongoClient('mongodb+srv://test:sparta@cluster0.uf2ux.mongodb.net/?retryWrites=true&w=majority')
db = client.dbsparta
# ์ ์ฅ - ์์
doc = {'name':'bobby','age':21}
db.users.insert_one(doc)
# ํ ๊ฐ ์ฐพ๊ธฐ - ์์
user = db.users.find_one({'name':'bobby'})
# ์ฌ๋ฌ๊ฐ ์ฐพ๊ธฐ - ์์ ( _id ๊ฐ์ ์ ์ธํ๊ณ ์ถ๋ ฅ)
all_users = list(db.users.find({},{'_id':False}))
# ๋ฐ๊พธ๊ธฐ - ์์
db.users.update_one({'name':'bobby'},{'$set':{'age':19}})
# ์ง์ฐ๊ธฐ - ์์
db.users.delete_one({'name':'bobby'})
'Deveolpment Study๐๏ธ > Databases' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
| SELECT๋ฌธ์ ํ์๊ณผ ์ฌ์ฉ๋ฒ (0) | 2023.02.22 |
|---|---|
| ๋ฐ์ดํฐ๋ฒ ์ด์ค ๊ฐ์ฒด์ ํ์ฉ (0) | 2023.02.22 |
| ๋ฐ์ดํฐ ์ฝ์ (INSERT) (0) | 2023.02.22 |
| MariaDB ๋ฐ์ดํฐ ํ์ (0) | 2023.02.22 |
| oracle -> mariaDB ๋ฌธ๋ฒ๋ณํ ์ฌ์ดํธ (0) | 2023.02.03 |