---
title: "Models and databases"
version: 1.9
locale: ja
source: https://docs.djangoproject.com/ja/1.9/topics/db/
canonical: https://djangodocs.dev/ja/1.9/topics/db/
---
# Models and databases

A model is the single, definitive source of data about your data. It contains
the essential fields and behaviors of the data you're storing. Generally, each
model maps to a single database table.

- [Models](/ja/1.9/topics/db/models/)
- [Making queries](/ja/1.9/topics/db/queries/)
- [Aggregation](/ja/1.9/topics/db/aggregation/)
- [Managers](/ja/1.9/topics/db/managers/)
- [Performing raw SQL queries](/ja/1.9/topics/db/sql/)
- [Database transactions](/ja/1.9/topics/db/transactions/)
- [Multiple databases](/ja/1.9/topics/db/multi-db/)
- [Tablespaces](/ja/1.9/topics/db/tablespaces/)
- [Database access optimization](/ja/1.9/topics/db/optimization/)
- [Examples of model relationship API usage](/ja/1.9/topics/db/examples/)
