<aside> 💡 NoSQL = Not Only SQL 다른 여러가지 해석이 있긴한데 통용되는게 이거라고함

</aside>

특징

MongoDB

쿼리 예시

db.user.insertOne({uid: 'admin', upw: 'secretpassword'})
db.inventory.find(
  { $and: [
    { status: "A" },
    { qty: { $lt: 30 } }
  ]}
)

Redis