Skip to content

Tag: sql

How to get the difference between two dates rounded to hours

I’ll illustrate what I would like to get in the following example: Using TIMEDIFF(), we get 2 as a result. This means, it’s not considering the 50 minutes left. In this case, what I’d like to get is: 50 (minutes) / 60 = 0.83 period. Therefore, the result should be 2.83 and not 2. Answer

Is a Primary Key necessary in SQL Server?

This may be a pretty naive and stupid question, but I’m going to ask it anyway I have a table with several fields, none of which are unique, and a primary key, which obviously is. This table is accessed via the non-unique fields regularly, but no user SP or process access data via the primary key. Is th…