tags:

views:

123

answers:

3

Is there a good guide for normalizing a mysql db?

I have only knowledge about phpmyadmin...

Thanks

A: 

MySQL's intro to normalization article.

There is a bunch of good follow-up links at the bottom of that article as well.

ChssPly76
A: 

First, keep in mind that 'normalization' is a DBMS agnostic term. Learning how to normalize data on one DBMS is equivalent to normalizing on any (relational) database. This doesn't exactly answer your question, but may help in adding some context to more robust answers.

L. Moser
A: 

Here's a good article about Database Normalization Basics which can apply to any database.

Nick