For databases that support intervals (mysql 5.1, all versions of pgsql, oracle 9 and up) you can do it easily:
=# create table abc (i timestamp);
CREATE TABLE
=# insert into abc values ('2007-11-01 00:00:00');
INSERT 0 1
=# select i - current_timestamp from abc;
?column?
-------------------------
36 days 12:25:27.699942
If you do that in mysql 5.0 you get a number measuring the number of 1/60ths of a second for the interval.