Suppose I have two SQL expressions now:
1. exp1
select date_1
from table_1
where blah blah
2. exp2
Select date_2
from table_2
where blah blah
How can I get the date difference in hours between the two dates returned above? I guess simply exp1-exp2 won't work...
Thanks!
1. exp1
select date_1
from table_1
where blah blah
2. exp2
Select date_2
from table_2
where blah blah
How can I get the date difference in hours between the two dates returned above? I guess simply exp1-exp2 won't work...
Thanks!