Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
The customer expected to get one table in the data model with the content as shown below. How would you alter the load script to get this result without changing the data in the two sources?
please find the attacment
Can you share the datas in those two table ?
T1:
LOAD * Inline [
F1, F2
a, 1
a, 2
b, 3
c, 4
];
T2:
LOAD DISTINCT * Inline [
F1, F2
a, 1
b, 3
b, 3
c, 4
];