create a query using two tables

Godders199

Active Member
Joined
Mar 2, 2017
Messages
313
Office Version
  1. 2013
Hello, I am trying to teach myself Access with the help of Google, but cant find what i am looking for, might just be searching incorrectly.

I want to create a query , based on two tables, the first is Staff, the second is sales the common factor on both tables is their employee number.

The query , I want , is a list of sales for all employees who are not currently off Sick

So I need the citeria to look at the Staff table for employees with the status of sick, and remove these employee numbers from the sales data.

If anyone has examples of these types of queries it would much be appreciated.
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Something like:
Rich (BB code):
SELECT * FROM sales_data inner join staff_data on sales_data.EmployeeId = staff_data.EmployeeId WHERE staff_data.Status != 'Sick'
 
Upvote 0
methinks Access sql will not accept != for <> (does not equal) if that's what != means.
 
Upvote 0

Forum statistics

Threads
1,214,522
Messages
6,120,022
Members
448,939
Latest member
Leon Leenders

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top