Problem with query

D

davetuepah

Hello,

I am trying to create a pivot table of sorts with the following query:

Select o.Rep, count(o1.Order_Type) as [Quotes], sum(o1.subtotal) as
[Value], count(o2.Order_Type) as [Orders], sum(o2.subtotal) as
[Value], count(o3.Order_Type) as [Invoices], sum(o3.subtotal) as
[Value]

from OEOrdHead o
left join OEOrdHead as o1 on o1.Rep = o.Rep and o1.Entered_Date =
o.Entered_Date and o1.Order_Type = 'Q'
left join OEOrdHead as o2 on o2.Rep = o.Rep and o2.Entered_Date =
o.Entered_Date and o2.Order_Type = 'O'
left join OEOrdHead as o3 on o3.Rep = o.Rep and o3.Entered_Date =
o.Entered_Date and o3.Order_Type = 'I'
where o.Entered_Date between @Start and @End
group by o.Rep

However when I run this query I get the following error: Syntax error
(missing operator) in query expression ''. When I click OK it
highlights "d 01" from the first join statement and the last and
statement. "d" being the d from and.

Can anyone see where I've gone wrong?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top