我的数据库表里有两列表示时间的列,我想查出这两个时间中间那个点的时间,即我想查出 t1 + (t2 - t1).
我已经找到求时间差的函数了:
select julianday(endtime) - julianday(starttime) from com_akwhere datatype = 'KP' and stationname = 'Planetary(estimatedAp)'
但是我用哪个函数才能进行时间加法的运算呢。谢谢。