Hi there,
I have a computer inventory database that tracks donations and distributions. I want to run a query on the combo box, drop down menu for the distributions table that weeds out computers that have already been distributed. My response was to use this SQL statement:
SELECT
Computers.Serial_Number
FROM
inventory.Computers
WHERE
Computers.Serial_Number <> Computer_Dist_Join.Serial_Number
However, it only elimated one serial number. What am I doing wrong? If you need further info let me know. Thanks, I really appreciate your help!
I have a computer inventory database that tracks donations and distributions. I want to run a query on the combo box, drop down menu for the distributions table that weeds out computers that have already been distributed. My response was to use this SQL statement:
SELECT
Computers.Serial_Number
FROM
inventory.Computers
WHERE
Computers.Serial_Number <> Computer_Dist_Join.Serial_Number
However, it only elimated one serial number. What am I doing wrong? If you need further info let me know. Thanks, I really appreciate your help!