lbarron wrote:
Does anyone know which table the chassis type is in?
SELECT
...
tSysChassisTypes.ChassisName,
...
FROM
tblAssets
...
INNER JOIN tblSystemEnclosure ON tblSystemEnclosure.AssetID = tblAssets.AssetID
INNER JOIN tSysChassisTypes ON tSysChassisTypes.ChassisType = tblSystemEnclosure.ChassisTypes
WHERE
tSysChassisTypes.ChassisName <> 'Docking Station'
...
does the job for me.
Note that there are a variety of chassis type names used for notebook computers -- notebook, laptop, portable, etc.