I have a table, VehicleModelYear, containing columns id, year, make, and model.
The following two queries work as expected:
SELECT DISTINCT make, model F
Try combining them into a single field:
SELECT COUNT(DISTINCT make + ' ' + model) FROM VehicleModelYear