Conversion failed when converting the varchar value 'Hours' to data type int. This is my query:
Sum(Cast(Cast(DATEDIFF(HH, ld_time_tracker_start_time, fld_time_tracker_end_time)%3600/60 As int) +' Hours'+ Cast(DATEDIFF(MINUTE, ld_time_tracker_start_time, fld_time_tracker_end_time)As int )+'Minutes' As Int)) As [Time Spent(In hrs)]
I modified the above Code To:
+Cast('Hours' As Int)
+Covert(int,'Hours')
… and got the error message:
Conversion failed when converting the varchar value ' Hours' to data
type int
Best Answer
This is not clear what output is needed. You are trying to convert text strings to int. This obviously does not work. Besides this type of formatting might fit better outside of SQL Server.
If you want something like
5 Hours 15 Minutes
you can try this query:Note that I have replaced
HH
byhour
. This is easier to read and understand and it avoid mistakes. See DATEDIFF (Transact-SQL).