I have a requirement where I have to join two tables from two different data sources. I have selected the blank query option and I am writing the query in the advanced editor option available in the query editor. This advanced editor allows me to enter only one data source. Is there a way where I can give two or more data sources.
The below works.
let
Source=Sql.Database("servername", "datasource1",
[Query="SELECTBusinessEntityID,FirstName,MiddleName,LastName,
JobTitle,City,StateProvinceName,CountryRegionName,TerritoryName,
TerritoryGroup,SalesYTD,SalesLastYear
FROMSales.vSalesPerson;"])
in
Source
"datasource1" is one data source.
My question is how to add another datasource.
Thanks.