Skip to content

Commit

Permalink
Normalización terminada
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinLatino committed May 8, 2024
1 parent d894921 commit 72adb42
Showing 1 changed file with 42 additions and 6 deletions.
48 changes: 42 additions & 6 deletions src/Articles/DataBaseScreen.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,17 @@ import {
Space,
PurpleTitle,
GreenTitle,
BlueTitle
BlueTitle,
RedTitle
} from '../Components/PageTextsComponent'
import {
BlueSection,
BlueWordSection,
GreenSection,
GreenWordSection,
PurpleSection,
PurpleWordSection
PurpleWordSection,
RedSection
} from '../Components/SectionsComponent'
import {
KeyRound,
Expand Down Expand Up @@ -224,11 +226,45 @@ const DataBase = () => {
<Title>
Formas normales
</Title>
<p>
son las reglas que aplican durante el proceso de normalización. Existen tres principales formas normales. Estas formas normales son acumulativias, es decir, una tabla en segunda forma normal está en primera forma normal,
de igual manera, una tabla en tercera forma normal está en segunda forma normal y por ende en primera formal normal
</p>
<Paragraph>
Son las reglas que aplican durante el proceso de normalización. Estas formas normales son acumulativias, es decir, una tabla en segunda forma normal está en primera forma normal,
de igual manera, una tabla en tercera forma normal está en segunda forma normal y por ende en primera formal normal.
</Paragraph>

<Space />

<div className='flex gap-16'>
<GreenSection>
<GreenTitle>
l Formal Normal:
</GreenTitle>
<Element>
● Ningún dato en un campo de la tabla se puede dividir en más datos sin que este dato pierda su significado.
</Element>
<Element>
● Existe un llave primaria.
</Element>
</GreenSection>

<PurpleSection>
<PurpleTitle>
ll Forma Normal:
</PurpleTitle>
<Element>
● Existen exclusivamente dependencias funcionales en la tabla.
</Element>
</PurpleSection>

<RedSection>
<RedTitle>
lll Forma Normal:
</RedTitle>
<Element>
● No existe ninguna dependencia transitiva en la tabla.
</Element>
</RedSection>

</div>
</div>
<BackButton />
</>
Expand Down

0 comments on commit 72adb42

Please sign in to comment.