• retagged by
2,898 views
1 1 vote
If a relation has no functional dependency than what is the normal form of this relation???

2 Answers

5 5 votes

A relation have always  trivial functional dependency. 

A trivial functional dependency always is in BCNF.

Example

R(ABC)

AB--->B like

0 0 votes

1>trivial dependencies is like,

sid---->sid

sname---->sname

cid------>cid

the meaning fo trivial dependencies is self-depending,i can be determined by itself,

 

#non_trivial_FD- 

sid------>sname

sid_cid---->sname 
 

 

#semi_non_trivial_fd

AB---->BC

C------>AC

 

If a relation has no functional dependency than what is the normal form of this relation???

for_example lets take a table

      x       y       
     5        7
     5         7 
      6         4
      6         4

 Now from above table we can say "x---->y"

and according to your question ''If a relation has no functional dependency'' its mean that we have only 

        x
       5
       5
       6
       8

#NORMALIZATION- is used to reduce redundancy in the database relations, and redundancy occurs if 2 or more relation stored in a single database, and can not use fds here  bczz we have only one row in the table,so how can we think about normal forms 

Position:
Show:

Related questions

0 0 votes
3 answers 3 answers
1.6k
1.6k views
Souvik33 asked Dec 17, 2022
1,583 views
MSQ A relation R(A,B,C,D) has only trivial functional dependencies of the form ( A→A, AB→AB,ABC→A, etc)Then consider the following options:The relation is surely in BCNFT...
10 10 votes
1 answers 1 answer
6.4k
6.4k views
Na462 asked May 29, 2018
6,368 views
Which of the following statement false of relation $R$ is in $3NF$ but not $BCNF$?Relation $R$ must consist atleast two over-lapped candidate keys.Relation $R$ must consi...
14 14 votes
6 answers 6 answers
21.2k
21.2k views
Shefali asked Sep 17, 2015
21,162 views
Consider the following statements.If relation R is in 3NF and every key is simple, then R is in BCNFIf relation R is in 3NF and R has only one key, then R is in BCNFBoth ...
2 2 votes
2 2 answers
4.6k
4.6k views
aditi19 asked Apr 14, 2019
4,576 views
Decompose into BCNFR(A, B, C, D, E)FD: AB->C, C->D, D>B, D->E