如果时限保存的是天数select * from 表 where cast(实际完成时间-接单时间 as int)>=时限的纪录如果是小时数:
select * from 表 where datediff(hour,实际完成时间,接单时间)>=时限的纪录其它类型参考DATEDIFF函数.