If you want to insert current datetime by calling getdate() method, then it is possible in sql server everywhere. you can do like this;
insert into employee values (4,'John',25, getdate())
This will insert current datetime in the fourth column (in above example).
Please let me know if it answers your question.
Thanks
Sachin
Sachin |