问题 I have 2 tables. 1) car table: 2) param table: I need to fetch duplicate cars have owner params match and do NOT differ in insurance (that's it must be either the same or is absent for both ). I'm successfully executing my query with LEFT JOIN in ANSI-syntax: SELECT owner.name, owner.value, COALESCE (insur.name, 'insurance'), insur.value, count(*) FROM car INNER JOIN param owner ON car.id = owner.car_id LEFT JOIN param insur ON car.id = insur.car_id AND insur.name = 'insur' WHERE owner.name =