Results 1 to 2 of 2
  1. #1
    access_gbr is offline Novice
    Windows Vista Access 2007
    Join Date
    May 2010
    Posts
    1

    Joining a Query

    Hello,

    I am wrapping my brain around joining these 3 queries into 1 statement. I am in the midst of learning SQL and needless to say, I am starting to get lost

    I am trying to answer this question:
    List the employees and their total merchandise sales expressed as a percentage of total merchandise sales for all employees.



    SELECT Sale.EmployeeID, Sum(SaleItem.SalePrice) AS SumOfSalePrice
    FROM Sale INNER JOIN SaleItem ON Sale.SaleID = SaleItem.SaleID
    GROUP BY Sale.EmployeeID;

    SELECT Sum(SaleItem.SalePrice) AS TotalMerchandiseSales
    FROM SaleItem;



    SELECT Employee.EmployeeID, Employee.LastName, Employee.FirstName, Employee.Title, EmployeeTotalSalesMerch.SumOfSalePrice, [SumOfSalePrice]/[TotalMerchandiseSales] AS PercentofSales
    FROM TotalSalesAllEmployees, Employee INNER JOIN EmployeeTotalSalesMerch ON Employee.EmployeeID = EmployeeTotalSalesMerch.EmployeeID
    ORDER BY [SumOfSalePrice]/[TotalMerchandiseSales] DESC;

    Sincere thanks to anyone that can provide some insight.

  2. #2
    TheShabz is offline Court Jester
    Windows XP Access 2003
    Join Date
    Feb 2010
    Posts
    1,368
    Can I get a screenshot of your relationship window? I'm not sure what's referring to a table record or a query record.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Joining multiple categories.
    By Bmo in forum Queries
    Replies: 1
    Last Post: 04-18-2010, 10:00 AM
  2. Joining or Combining Two tables
    By escuro19 in forum Queries
    Replies: 2
    Last Post: 02-16-2010, 03:55 PM
  3. Joining Unioins output to tables? Help Needed
    By techexpressinc in forum Queries
    Replies: 4
    Last Post: 06-24-2009, 05:05 PM
  4. joining text in text boxes
    By jjwilliams73 in forum Forms
    Replies: 1
    Last Post: 08-26-2008, 02:30 PM
  5. Joining tables two tables and another table that is not
    By DevintheDude in forum Database Design
    Replies: 0
    Last Post: 09-12-2007, 08:56 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums