1NF: Atomic Values and Unique Identifiers. Multivalued attributes have to be in atomic form. Mixing data types within the same column is not permitted. Each table must have a Primary key (either a simple primary key or a composite Primary key). Repeating groups are not permitted. Derived attributes should be omitted.
2NF: All Data must depend on the whole Primary key. This means each non-key attribute in a table must be dependent on the entire primary key. For a table with a composite key, then each non-key attribute must be dependent on the entire composite key.