Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello, I would like to create a group for products based on different conditions, linked to differents tables linked to my products.
For instance I create a table like this :
Concatenate is creating one table from multiple tables.
This will work i think
ProductTable:
LOAD ProductID, PreparationTime, 'Seafood' as ProductCategory,
FROM Seafood.xlsx;
Concatenate(ProductTable)
LOAD ProductID, 'ChineeseProduct' as ProductCategory,
FROM SuppliersProduct
WHERE
I hope i got it right but you have to this i think:
etc.
I have multiple table to link, one is coming from excel file
My tables look like this :
Table1 :
LOAD ProductID, PreparationTime, 'Seafood'
FROM Seafood.xlsx;
Table2 :
LOAD ProductID, 'ChineeseProduct'
FROM SuppliersProduct
WHERE
Concatenate is creating one table from multiple tables.
This will work i think
ProductTable:
LOAD ProductID, PreparationTime, 'Seafood' as ProductCategory,
FROM Seafood.xlsx;
Concatenate(ProductTable)
LOAD ProductID, 'ChineeseProduct' as ProductCategory,
FROM SuppliersProduct
WHERE
It worked, I just forgot to rename my field.
Thank you