I\'m running the following MySQL query to find cars that don\'t have manuals (and have black wheels, etc.)
SELECT `cars`.* FROM `cars` INNER JOIN wheels ON c
You could try SELECT DISTINCT instead of SELECT
SELECT DISTINCT
SELECT