Ano, můžete nastavit výchozí hodnotu, ale chcete, aby syntaxe byla správná:
[date] datetime default (case when datepart(hh, getdate()) = 24 then getdate() - 1 else getdate() end)
Nemyslím si však, že byste měli mít datetime
hodnotu v poli s názvem „datum“. Co třeba:
AsOfDate date default (case when datepart(hh, getdate()) = 24 then cast(getdate() - 1 as date) else cast(getdate() as date) end)