insert 할 때 datetime 값이 자동으로 들어가게 하는 방법이 있나요?
MSSQL에서 기본값을 getdate()로 지정한것과 같은 효과를 볼 수 있는지...
getdate()가 머하는 건지는 모르겠지만...
default 값을 원하신다면...
create table tab_name
(col_name datetime year to second default current year to second);
이런식으루 하시면 될겁니다...
그럼... 꾸뻑~