create 문을 사용할 때 사용하면 좋은 점 몇 가지 조언 받았다. - timestamp 날짜를 등록하는 날짜 column을 작성할 때 `today` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' `today_update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' 이런 식으로 작성하여 insert/update 시 column 에 하나씩 넣어줬는데 `today` timestamp NOT NULL DEFAULT current_timestamp() `today_update` timestamp NOT NULL DEFAULT current_timestamp() 이렇게 쓰면 최초 로우 생성 시에 today에 현재 시간을 자동으로 ..