Intern — Middle
What result will query №51 return
livecode
Task condition
Determine what output will be obtained after executing the following SQL query:
T1 T2
a b
1 1
2 1
select T1.a, T2.b from T1 left join T2 on T2.b = T1.a
livecode
Task condition
Determine what output will be obtained after executing the following SQL query:
T1 T2
a b
1 1
2 1
select T1.a, T2.b from T1 left join T2 on T2.b = T1.a