Files
nexus/wiki/entities/MySQL.md
2026-04-14 16:02:50 +08:00

25 lines
592 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: "MySQL"
type: entity
tags: [database, relational-database]
sources: [tiktok-pm-python-django-project.md]
last_updated: 2026-04-14
---
## Definition
MySQL是一个开源关系型数据库管理系统广泛用于Web应用的数据存储。
## Role in TikTok PM Project
- 存储TikTok产品的核心数据
- 支持utf8mb4字符集以处理emoji和复杂字符
- 通过Django ORM进行数据操作
## Key Configuration
- 数据库名tiktok_product_db
- 端口3306
- 字符集utf8mb4
- sql_modeSTRICT_TRANS_TABLES
## Connections
- [[MySQL]] ← stores ← [[Django]]