What is the best field to store the birthday?

mysql

Solution

to store a date, you should probably use a date. to quote the documentation:

The DATE type is used for values with a date part but no time part.

Problem

I have to store in my mysql database, the users's birthday ( like `12-11-1990` ). What field type do I have to use to store it ?

Original source