我在mysql中有一个查询
select f1,f2,f3 from tableName;
我只想删除字段 f1 和 f2 中的重复值,
我累了如下
select f1,f2,f3 from tableName
group by f1,f2;
但它只会删除 f1 中的重复项。任何机构都可以建议我如何删除 f1 和 f2 中的重复项。
topic_id topic_name question_type
2237 Understanding Diversity Comprehensive
2237 Understanding Diversity Easy
2237 Understanding Diversity Application
44315 Bhasha, boli, lipi, or Vayakaran Intermediate
以上是仅在 question_type 列中具有不同值的示例输出,我想从 question_type 和 topic_id 中删除重复项
预期输出:同时具有 topic_id 和 question_type 不同的值
44315 Bhasha, boli, lipi, or Vayakaran Intermediate
2237 Understanding Diversity Comprehensive