Skip to content
Advertisement

Return only the modified records in a table, using T-SQL

I’m attempting to return only the modified records in a table, using T-SQL.

This is what I’ve done thus far:

Results:

Expected results:

The following statement returns all the 0 to 1, and 1 to 0 records and I don’t understand why:

Advertisement

Answer

To track the changes at whole dataset, you were almost there, you just need to remove the first row by using LastValue <> -1.

To track the changes at SetName level.

db<>fiddle: Try here

Note: From the given dataset, modified records at SetName level and at whole dataset is same.

Assumption: Each Timestamp value is different.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement