I have one field in database in this format: 2013-06-18 17:00:00.000
and second field Duration in this format: 3000
(this represents seconds, so it is 50 minutes)
I need to subtract those two fields and to set in another field result which will be: 2013-06-18 16:10:00.000
One addition is that they both can be retrieved from database in string format only. So they are both strings.
Thanks