I have been making modifications in already designed software. I have come across a table which needs a new column called ‘expiry date’ and it would not be a mandatory field. So I have got to options, whether add a column with default values or set it to Null.
Are there any performance issues when using Null values for date column?
Which logical condition is faster?
If ExpirtDate IS NULL
OR
IF ExpiryDate > GetDATE (system date)