Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. WillAtlGuy

    Outer Join with More than 2 Tables "Operator Missing"

    As far as I know, you can't use HAVING to create a join condition. I'll give it a try, but the HAVING will probably be performed after the join and without a WHERE or ON clause, you get a cartesian join. So you will end up with every row of every table joined with every row of every other table...
  2. WillAtlGuy

    Outer Join with More than 2 Tables "Operator Missing"

    I am trying to perform a summary query that joins 4 tables. Ordinarily I don't work with Access. With DB2, I would write something like this: SELECT customer.customerNo, customer.name, Sum(customerContact.ordersPlaced) AS Orders, Sum(productSales.qtySold) AS Sales...

Part and Inventory Search

Back
Top