Good day,
How would I add nVarChar fields with values "00:00:02", "00:00:05", etc, etc, simulating the duration of a telephone call together?
I tried using SUM(field) but it cannot add up a nVarChar field.
I also tried using SUM(CONVERT(datetime, field)) but that does not work either, saying that you cannot sum up a datetime field.
Which data type should I use, or is there another way?
Thanks in advance for any help.
How would I add nVarChar fields with values "00:00:02", "00:00:05", etc, etc, simulating the duration of a telephone call together?
I tried using SUM(field) but it cannot add up a nVarChar field.
I also tried using SUM(CONVERT(datetime, field)) but that does not work either, saying that you cannot sum up a datetime field.
Which data type should I use, or is there another way?
Thanks in advance for any help.