我在表中添加了一个新列。该表的列是:
Identifier(unique identity but not joinable to the other table)
ClinicalID(int)
senttime(datetime)
orgID(int-new column)
我需要根据发送时间从不同的表中更新新列。我应该检查发送时间的日期范围并相应地更新 orgID。另一个表的列:
ClinicalIDentifier
org ID(int)
old orgID(int)
effectivefromtime
effectivethrutime
我面临的问题是,如果发送时间 > 另一个表的有效起始时间,它会显示相同临床 ID 的其他组织 ID,其中发送时间 > 有效起始时间。
我一直在比较日期范围。
如果您需要任何进一步的信息,请告诉我