我继承了我为报告制度而努力的一个文件库。 该系统以采购订单为中心,其创建、转让、确认和确认。 这些国家是一个进步的国家。 我所审查的内容如下:
OR (CreateJob.endtime is NULL and DATEDIFF(hour, buy_date, getdate()) > Vendor.expected_create_hours)
OR (TransmitJob.endtime is NULL and DATEDIFF(hour, CreateJob.endtime, getdate()) > Vendor.expected_transmit_hours)
OR (AcknowledgeJob.endtime is NULL and DATEDIFF(hour, TransmitJob.endtime, getdate()) > Vendor.expected_acknowledge_hours)
OR (ConfirmJob.endtime is NULL and DATEDIFF(hour, AcknowledgeJob.endtime, getdate()) > Vendor.expected_confirm_hours)
我发现的是,由于工作失败,不可能有一个“创造机会”。 然而,工作可以再执行一次采购令,因此,有时某个特定业务主管实际成立,但由于兄弟后来失败,工作没有结束。 这就造成了一种情况,即各州在竞选公职职位方面仍然取得进展,但是由于“创造机会”是全国人民党,它仍然显示这一问题报告。
因此,首先,上述制度和结构有一些明显的弊端,但这是一个与我目前处理的问题不同的问题。
看来,我可以通过基本上把逐步检查作为报告和陈述加以补充来确定报告。 因此,对“联合企业”的首次检查也:
( (CreateJob.endtime is NULL and DATEDIFF(hour, buy_date, getdate()) > Vendor.expected_create_hours)
AND (TransmitJob.endtime is NULL and DATEDIFF(hour, CreateJob.endtime, getdate()) > Vendor.expected_transmit_hours)
AND (AcknowledgeJob.endtime is NULL and DATEDIFF(hour, TransmitJob.endtime, getdate()) > Vendor.expected_acknowledge_hours)
AND (ConfirmJob.endtime is NULL and DATEDIFF(hour, AcknowledgeJob.endtime, getdate()) > Vendor.expected_confirm_hours))
令人ug笑皆是,开始把物品混入肥料之中。 我能否以某种方式在以下表格中做到等同? 基本是某种宏观或临时制度?
CreateFailed = (CreateJob.endtime is NULL and DATEDIFF(hour, buy_date, getdate()) > Vendor.expected_create_hours)
TransmitFailed = (TransmitJob.endtime is NULL and DATEDIFF(hour, CreateJob.endtime, getdate()) > Vendor.expected_transmit_hours)
AcknowledgeFailed = (AcknowledgeJob.endtime is NULL and DATEDIFF(hour, TransmitJob.endtime, getdate()) > Vendor.expected_acknowledge_hours)
ConfirmFailed = (ConfirmJob.endtime is NULL and DATEDIFF(hour, AcknowledgeJob.endtime, getdate()) > Vendor.expected_confirm_hours)
OR (CreateFailed AND TransmitFailed AND AcknowledgeFailed AND ConfirmFailed)
OR (TransmitFailed AND AcknowledgeFailed AND ConfirmFailed)
OR (AcknowledgeFailed AND ConfirmFailed)
OR (ConfirmFailed)
如果在我试图做些什么时有一个共同的术语或名称,也许有人会把它添加到标题中?