Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. 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
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 7 | |
| 5 | |
| 5 | |
| 5 | |
| 4 |