---
title: "모델과 데이터베이스"
version: 3.1
locale: ko
source: https://docs.djangoproject.com/ko/3.1/topics/db/
canonical: https://djangodocs.dev/ko/3.1/topics/db/
---
# 모델과 데이터베이스

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.

- [모델](/ko/3.1/topics/db/models/)
- [쿼리 만들기](/ko/3.1/topics/db/queries/)
- [Aggregation](/ko/3.1/topics/db/aggregation/)
- [검색](/ko/3.1/topics/db/search/)
- [Managers](/ko/3.1/topics/db/managers/)
- [Performing raw SQL queries](/ko/3.1/topics/db/sql/)
- [데이터베이스 트랜잭션](/ko/3.1/topics/db/transactions/)
- [Multiple databases](/ko/3.1/topics/db/multi-db/)
- [테이블스페이스](/ko/3.1/topics/db/tablespaces/)
- [데이터베이스 접근 최적화](/ko/3.1/topics/db/optimization/)
- [Database instrumentation](/ko/3.1/topics/db/instrumentation/)
- [Examples of model relationship API usage](/ko/3.1/topics/db/examples/)
