0
Which type of data type is used for adding DOB( Date of Birth ) in the Table of MySql ?
2 Answers
+ 3
Table created a dob field with DATE type
CREATE TABLE persons (
dob DATE
);
Insert dob data with
INSERT INTO persons (dob) VALUES ('2010-12-01');
+ 3
Thanks. It's working.