InterviewSolution
Saved Bookmarks
| 1. |
What is the format of entering date into a database while inserting data into it?(a) YYYY-MM-DD(b) “YYYY-MM-DD”(c) ‘YYYY-MM-DD’(d) “DD-MM-YYYY”This question was posed to me in an international level competition.My question is taken from Modification of Database in portion Introduction to Relational Model and Sql of RDBMS |
|
Answer» CORRECT answer is (c) ‘YYYY-MM-DD’ For EXPLANATION I would say: The correct format for entering DATE into the database while INSERTING DATA is ‘YYYY-MM-DD’. |
|