Which type of data type is used for adding DOB( Date of Birth ) in the Table of MySql ? | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
0

Which type of data type is used for adding DOB( Date of Birth ) in the Table of MySql ?

5th Jan 2023, 10:31 AM
Abhishek Gupta
2 Respuestas
+ 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');
5th Jan 2023, 10:44 AM
Calviղ
Calviղ - avatar
+ 3
Thanks. It's working.
5th Jan 2023, 11:31 AM
Abhishek Gupta