Which of the following way or ways before is/are correct to insert DATE in a table?
Options
- insert into Employee(Start_Date) values ('05-FEB-2005')
- insert into Employee(Start_Date) values ('FEB-05-2005')
- Both a and b
- None of the above
CORRECT ANSWER : insert into Employee(Start_Date) values ('05-FEB-2005')
Write your comments