Suppose we have three tables t₁(A, B), t2(B, C), and tз(B, D), with all attributes de- clared as not null. Consider the expressions(1) ti natural left outer join (t2 natural left outer join t3) and(2) (tı natural left outer join t2) natural left outer join tзGive an instance of t1, t2 and t3 such that in the result of the second expression, attributeC has a null value but attribute D has a non-null value.In the above question, is C null and D not null possible in the result of the first expres- sion? Explain why or why not.