Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Computed column type
Message
 
General information
Forum:
Microsoft SQL Server
Category:
Other
Environment versions
SQL Server:
SQL Server 2005
Miscellaneous
Thread ID:
01527410
Message ID:
01527413
Views:
76
This message has been marked as the solution to the initial question of the thread.
>>>Hi,
>>>
>>>I created a computed column in a table of SQL Server 2005. The column name is DaysOver. The formula in the Computed Column Specificaion is [Date1]-[Date2]. The type of the column is empty. Does this column always return an integer? Because I use it in the SQL select as following:
>>>
>>>
>>>select * from MyTable where DaysOver > 10
>>>
>>>
>>>And the returned query has the correct rows. But what if one of the DateTime columns (Date1 or Date2) is NULL? What will be returned?
>>
>>I hope you're using DATEDIFF function. The datediff function returns an integer. The type of derived column is determined by SQL Server itself and it may be tricky.
>>
>>You can also try adding CAST function if you want to ensure a specific type.
>
>As far as DATEDIFF, how would the syntax work? That is, if I want to replace the formula [Date1]-[Date2] with using DATEDIFF, what would the formula look like?
>
>Thank you.

If you want to return difference in Days, then the formula is
datediff(day, Date1, Date2).
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform