通过比较目标表的最后一行,插入触发器而无需重复



嗨,我读了两天,我找不到解决方案,这就是为什么我请h我正在尝试执行触发器,这些触发器插入了最后记录中插入的数据最高的数据,但没有重复。我有目标表:

CREATE TABLE [dbo].[exported] ([Repair_Date] [datetime] NULL,
[idKards] [int] NULL,   [Position] [nvarchar](32) NULL,
[error] [int] NULL)

和触发器:

Create TRIGGER [dbo].[tr2] ON [dbo].[mes] AFTER INSERT 
AS
INSERT INTO  dbo.[exported]    
    ([idKard],[Repair_Date],[Position],[Error],[name],[model_name],[parent_number]) 
    SELECT c.idKards,i.[Repair_Date],i.[Position],i.error,s.name, mo.Model_Name,  pn.Parent_Number FROM inserted i
          left outer join dbo.test t on i.idTest=t.idTest
          left outer join dbo.Kards k on t.idKards=k.idKards
    where [Repair_Error] in (300,400) 
    and K.idKards > (select max(idKards) from dbo.exported)

dbo.exported中的示例数据 - 在此表中,所有值均删除,除了上一个:

Repair_Date            idKards  Position    error    
2012-10-10 00:03:25    91996    IC4303          4   

从另一个表(下面的示例数据)插入数据时(触发器上的触发器)时:

Repair_Date         idTest  Position error  
2012-10-10 00:00:58 91996   C524     1  
2012-10-10 00:00:56 91996   C522     1  
2012-10-10 00:00:54 91996   C537     1  
2012-10-10 04:34:31 95694   P1104    1  
2012-10-10 06:48:33 97405   P1104    1  
2012-10-10 01:31:17 93088   P1104    1  
2012-10-10 01:34:04 92747   P1104    1  
2012-10-10 12:49:22 102773  P1104    1  
2012-10-10 14:19:03 102773  P1104    4  
2012-10-15 16:27:24 149693  P1104    1

触发器应比较DBO上的最后一个iDtest,并与插入的数据相比,并在表DBO中添加无重复的数据。但这添加了全部:

repair_date idtest位置错误2012-10-10 00:03:25 91996 IC4303 42012-10-10 00:00:58 91996 C524 12012-10-10 00:00:56 91996 C522 12012-10-10 00:00:54 91996 C537 12012-10-10 04:34:31 95694 P1104 12012-10-10 06:48:33 97405 P1104 12012-10-10 01:31:17 93088 P1104 12012-10-10 01:34:04 92747 P1104 12012-10-10 12:49:22 102773 P1104 12012-10-10 14:19:03 102773 P1104 42012-10-15 16:27:24 149693 P1104 1

您正在使用左联接在插入的表上,因此您的查询将返回

的行

相关内容

  • 没有找到相关文章

最新更新