Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
Anonymous
Not applicable

SQL Statement Error

Hello all,

I am trying to add a SQL query into our data source. While adding the query, I am getting the below error:

 

SQL query error.PNG

 

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!

1 ACCEPTED SOLUTION
dixitmca
Regular Visitor

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

View solution in original post

1 REPLY 1
dixitmca
Regular Visitor

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

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.