Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello all,
I am trying to add a SQL query into our data source. While adding the query, I am getting the below error:
Following is the query where I have the ON within my statement:
From Quote.dbo.ABC a
Left Join (
Select [MURAEA],
[H40CEA] as H40CEA,
[GA02EA]
FROM [ASTRO].[dbo].[SMEAP00]
) b
on a.GPN=b.[MURAEA]
Left Join (
SELECT
[QUOTDD] as Quote_Num,
[MURADD] as GPN,
[CQTYDD]
FROM [QUOTE].[dbo].[MEADDP00]
Where [CYMDDD]>'20180101'
)
on a.GPN=c.GPN
-- and a.Quote=c.[QUOTDD]
Please let me know if anyone knows where I am doing wrong. All help will be appreciated.
Regards!
Solved! Go to Solution.
Hi,
You have left aliasing as C to third sub query
you should write:-
Left Join (
SELECT
[QUOTDD] as Quote_Num,
[MURADD] as GPN,
[CQTYDD]
FROM [QUOTE].[dbo].[MEADDP00]
Where [CYMDDD]>'20180101'
) c
on a.GPN=c.GPN
Hi,
You have left aliasing as C to third sub query
you should write:-
Left Join (
SELECT
[QUOTDD] as Quote_Num,
[MURADD] as GPN,
[CQTYDD]
FROM [QUOTE].[dbo].[MEADDP00]
Where [CYMDDD]>'20180101'
) c
on a.GPN=c.GPN
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.