Which type of data type is used for adding DOB( Date of Birth ) in the Table of MySql ? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
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 Respostas
+ 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