From c4cce24afb8e238fe47e1662e2d769a856559151 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8F=B6=E5=AD=90=E8=B1=AA?= <2936219414@qq.com> Date: Thu, 7 Sep 2023 20:34:08 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AC=94=E8=AE=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...254\344\270\211\345\244\251\347\254\224\350\256\260.md" | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 "54 \345\217\266\345\255\220\350\261\252/\347\254\254\344\270\211\345\244\251\347\254\224\350\256\260.md" diff --git "a/54 \345\217\266\345\255\220\350\261\252/\347\254\254\344\270\211\345\244\251\347\254\224\350\256\260.md" "b/54 \345\217\266\345\255\220\350\261\252/\347\254\254\344\270\211\345\244\251\347\254\224\350\256\260.md" new file mode 100644 index 0000000..affa112 --- /dev/null +++ "b/54 \345\217\266\345\255\220\350\261\252/\347\254\254\344\270\211\345\244\251\347\254\224\350\256\260.md" @@ -0,0 +1,7 @@ +# 数据库的范式 + +第一范式:要求字段的内容,不可再分割为保证数据的原子性 + +第二范式:要求在满足第一范式的基础上要求非主键字段要完全依赖主键(非主键要依赖整个联合主键)而不能只依赖部分 + +第三范式:满足第二范式的前提下要求非主键属性要直接依赖于主键 \ No newline at end of file -- Gitee