I have two options to store the DOB (date of birth) in MySQL. Which is the better method from the following?
Storing DOB using Date Type in MySQL,
OR
Storing DOB values separately in different fields like Day in one field, month in another and year in another?
If the client wants to display the month and date only, is it possible to retrieve it, if we store DOB in date type of MySQL?