Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
smalldatetimeSQLServer2008の列にデフォルト値の5分を設定できません。助けていただければ幸いです。
smalldatetime
ありがとう、グリーン
あなたはこのようにそれを行うことができます:
CREATE TABLE #t(col TIME DEFAULT '00:05') INSERT #t VALUES (DEFAULT) SELECT * FROM #t
ティムが提案したように、より良いことはTIMEデータ型を使用することです。
TIME