I have a table t
t=table(100 101 103 106 as price,take(10,4) as n)
price n
100 10
101 10
103 10
106 10
For the missing values of the column price, like 102, 104, and 105, I want to fill it with n=0.
price n
100 10
101 10
102 0
103 10
104 0
105 0
106 10