Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
i have a fact table and dimension table .
how to combine it?
There should be some common field between them...
Consider that you have fact table ... Sales having below fields
CustomerID
SalesDate
SalesQty
SalesAmout etc etc
and a Dimension Table Customer with below fields..
ID
Name
Country etc etc.
rename the Customer Table's ID field as CustomerID, which will now create an association between Sales and Customer Table..
Hi, manish
its good but i want to show the two tables into a single table in datamodel
its join or concateneate
Hi, manish
its good but i want to show the two tables into a single table in datamodel
its join or concateneate
For my example
Sales:
Load
CustomerID,
SalesDate,
SalesQty,
SalesAmout
From TableName....
Left Join (Sales)
Load
ID as CustomerID,
Name,
Country
From TableName ....
if we have no common fields then?
Not possible to link them... ....
Let us know your tables and their fields you are talking about..
It all depends on How the tables are related and what is your requirement on the UI to represnt the data
It all depends on How the tables are related and what is your requirement on the UI to represnt the data
You can do either of one depends on the Tables data attributes.