Answers for "sql auto insert date"

SQL
0

sql create table with datetime automatically

CREATE TABLE myTable ( col1 int, createdDate datetime DEFAULT(getdate()), updatedDate datetime DEFAULT(getdate()) )
Posted by: Guest on May-29-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language