If I have table with a two columns:
- date (timestamp)
- milliseconds (int)
How could I write a query that would return the two columns and a third column that represents a sum of the first two as a timestamp.
Like this:
date | milliseconds | sum
----------------------------+---------------+----------------------------
2014-12-10 17:43:47.554989 | 11882 | 2014-12-10 17:43:59.436989
Thanks!