Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Find the below 2 table and let me help how will i do data model. In Front end I need to show Sum(weight) with using filter SHC GROUP CODE .
Table-1(FACT)
Table-2
I think you are asking how to join the tables. You can use subfield(SHC,',') on table 1 to parse out each.
Table1:
Load
AWB,
subfield(SHC,',') as SHC,
WeightKg
FROM
Table1 Source;
Table2:
SHC,
[SHC GROUPCODE]
Table2 Source;