Posts

CYBER SECURITY

Image
College of Engineering Roorkee

Second normal form in RDBMS

Image
  SECOND NORMAL FORM A table is said to be in its second normal form, when a relation must be in first normal form and each column in the record is not partially dependent which means fully dependent on its primary key. We follow some steps a table converting into a second normal form: ·          Group remove items in the another table ·          Assign the new table with a key i.e part of a whole composite key.   ·          All non-key attributes are fully dependent on the primary key. Example:- Suppose, a college can store the data of teachers and the subject name they teach. A teacher can teach more than one subject.   Teacher_id Subject_name Teacher age 1 C programming 38 1 SAD 38 2 JAVA 40 3 ...