SELECT count(DISTINCT`account_id`, `company`, `department`, `title`, `start_at`, `end_at`, `type`, `create_at`, `update_at`) FROM `experience`;
SELECT DISTINCT `account_id`, `company`, `department`, `title`, `start_at`, `end_at`, `type`, `create_at`, `update_at` FROM `experience`;
这两个 sqls 的结果不匹配。第一个结果是 3670,第二个是 4564 条记录。
谁能告诉我为什么?