---
title: "モデルとデータベース"
version: 3.2
locale: ja
source: https://docs.djangoproject.com/ja/3.2/topics/db/
canonical: https://djangodocs.dev/ja/3.2/topics/db/
---
# モデルとデータベース

モデルは、データに関する唯一かつ決定的な情報源です。あなたが保持するデータが必要とするフィールドとその動作を定義します。一般的に、各モデルは単一のデータベースのテーブルに対応付けられます。

- [モデル](/ja/3.2/topics/db/models/)
- [クエリを作成する](/ja/3.2/topics/db/queries/)
- [アグリゲーション](/ja/3.2/topics/db/aggregation/)
- [検索](/ja/3.2/topics/db/search/)
- [マネージャ](/ja/3.2/topics/db/managers/)
- [素の SQL 文の実行](/ja/3.2/topics/db/sql/)
- [データベースのトランザクション](/ja/3.2/topics/db/transactions/)
- [複数のデータベース](/ja/3.2/topics/db/multi-db/)
- [Tablespaces](/ja/3.2/topics/db/tablespaces/)
- [データベースアクセスの最適化](/ja/3.2/topics/db/optimization/)
- [Database instrumentation](/ja/3.2/topics/db/instrumentation/)
- [Examples of model relationship API usage](/ja/3.2/topics/db/examples/)
