Skip to content
Advertisement

SQL – Insert rows on missing value with previous row information

I have queried the tables in a SQL Server database that return a result set with CId (the CId can be in range from 0 to 6) with the quantities.

Result:

I want to insert the missing CId into result table with previous row CId -> qty, if there is no previous value in group then insert qty as 0

Expected result: I’ve added | character in-front of the row to indicate the difference between actual and expected.

I thought joining the same table should work but not sure how to do that or didn’t get any relevant information on google.

Can anyone tell me if my approach is correct or possible? (joining the table to itself and looking into previous row value )

Updated result after applying change:

Advertisement

Answer

Use a cross join to generate the rows and a left join to bring in the current values:

EDIT:

I see, you want to repeat the most recent quantity before hand. Such a good place for lag(ignore nulls). Alas, SQL Server doesn’t support that. Instead, we can use outer apply:

If you know the quantities are always increasing then you can do:

This should have a bit better performance than outer apply.

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