According to the doc the default value of a date in SQL Server is
1900-01-01 00:00:00
Can I call the default value in any way? For instance like this
select isnull(date_column, default(date_column))
from my_table
According to the doc the default value of a date in SQL Server is
1900-01-01 00:00:00
Can I call the default value in any way? For instance like this
select isnull(date_column, default(date_column))
from my_table