首頁 > web前端 > js教程 > 主體

SQL 已死?開始使用 mongoDB

WBOY
發布: 2024-07-19 05:23:45
原創
668 人瀏覽過

SQL is Dead? Get Started with mongoDB

什麼是 MongoDB:

MongoDB 是一個非關聯式資料庫,這表示資料以集合的形式儲存。

MongoDB 也支援 BSON(二進位 JSON),這是一種二進位編碼形式的 JSON,允許使用其他資料類型,例如二進位、十進位、物件 ID 等。

MongoDB 有自己的查詢語言,基於 JSON 和 JavaScript 語法,用於查詢,MongoDB 是一個非關聯式資料庫,這表示資料儲存為集合,每個文件代表一筆記錄,每個欄位代表一個值。

安裝 MongoDB?

登入後第一次登入您的 mongoDB 帳戶,根據您的要求為您的資料庫建立新叢集。如果初學者想學習 mongoDB,mongoDB 還為他們提供免費叢集。 :)

安裝步驟:

套件管理器安裝:

  • 更新軟體包清單:sudo apt update(對於基於 Debian 的系統)或等效命令。
  • 安裝 MongoDB: sudo apt install -y mongodb-org (基於 Debian 的系統)或其他套件管理器的等效指令。
  • 啟動 MongoDB 服務:sudo systemctl start mongod。
  • 啟用 MongoDB 在啟動時啟動:sudo systemctl enable mongod。

雲端安裝(MongoDB Atlas):

  • 註冊或登入 MongoDB Atlas。
  • 按照指導步驟建立叢集。
  • 配置安全設定並連接您的應用程式。

(可選)安裝 MongoDB Compass 或其他管理工具,以更輕鬆地進行資料庫管理和視覺化。

MongoDB 中的基本 CRUD?

首先,確保 MongoDB 已安裝並正在運作。您可以使用 MongoDB shell 或 MongoDB 用戶端(例如 MongoDB Compass)連線到 MongoDB。

在 MongoDB 中,資料庫和集合是在首次儲存資料時隱式建立的。若要切換到特定資料庫或明確建立資料庫,請使用下列命令:(使用 mydatabase)

要將資料插入集合(相當於關聯式資料庫中的表格),請使用 insertOne() 或 insertMany() 方法:

// Insert a single document into a collection
db.users.insertOne({ name: "John Doe", age: 30, email: "john.doe@example.com" });

// Insert multiple documents into a collection
db.users.insertMany([
    { name: "Jane Smith", age: 25, email: "jane.smith@example.com" },
    { name: "Michael Johnson", age: 40, email: "michael.johnson@example.com" }
]);
登入後複製

閱讀(找文件)
若要從集合中檢索數據,請使用具有可選查詢條件的 find() 方法:

// Find all documents in a collection
db.users.find();

// Find documents matching specific criteria (e.g., find users older than 35)
db.users.find({ age: { $gt: 35 } });

// Find a single document by its _id
db.users.findOne({ _id: ObjectId("insert-id-here") });
登入後複製

更新(更新文件)
若要更新集合中的文檔,請使用 updateOne() 或 updateMany() 方法:

// Update a single document matching a query
db.users.updateOne(
    { name: "John Doe" },
    { $set: { age: 31, email: "john.doe.updated@example.com" } }
);

// Update multiple documents matching a query
db.users.updateMany(
    { age: { $lt: 30 } },
    { $set: { status: "inactive" } }
);
登入後複製

刪除(刪除文件)
若要從集合中刪除文檔,請使用deleteOne() 或deleteMany() 方法:

// Delete a single document matching a query
db.users.deleteOne({ name: "John Doe" });

// Delete multiple documents matching a query
db.users.deleteMany({ status: "inactive" });

登入後複製

使用 MongoDB 的優點:

  • 適用於架構和關係隨時間變化的非結構化和動態資料。
  • MongoDB 提供了更大的簡單性和敏捷性,因為它不需要預先定義的模式,從而允許更靈活和更具表現力的資料模型。
  • 可擴展且高效能,它可以輕鬆管理大量不同的資料並將其分佈在多個伺服器上。

感謝您閱讀這篇文章,以了解更多類似內容請關注我的帳戶,如果您在評論部分有建議,請告訴我。

以上是SQL 已死?開始使用 mongoDB的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:dev.to
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!