Normalization notes
First normal form:
each attribute value must be a single value only.
all values for a given attribute must be of the same type.
each attribute name must be unique.
the order of attributes is insignificant.
no two tuples in a relation can be identical.
if you have a key defined for the relation then you can meet the unique row requirement example relation in 1nf:
STOCKS(Company, Symbol , Headquarters, Date, Close_Price)
each attribute value must be a single value only.
all values for a given attribute must be of the same type.
each attribute name must be unique.
the order of attributes is insignificant.
no two tuples in a relation can be identical.
if you have a key defined for the relation then you can meet the unique row requirement example relation in 1nf:
STOCKS(Company, Symbol , Headquarters, Date, Close_Price)