InterviewSolution
Saved Bookmarks
| 1. |
Which data and time datatype stores time value in ‘hh:mm:ss’ format?(a) DATE(b) TIME(c) DATETIME(d) TIMESTAMP |
|
Answer» Correct choice is (b) TIME For explanation I would say: MySQL has some variety of date and time datatypes. These datatypes are crucial for representing records in a table. The ‘TIME’ type represents a time value, stored in the ‘hh:mm:ss’ format. |
|