mysql 两张关联表怎么去重
时间: 2023-10-19 20:06:25 浏览: 89
MySQL数据表合并去重的简单实现方法
可以使用DISTINCT或者GROUP BY语句进行去重。
1. 使用DISTINCT语句:
SELECT DISTINCT t1.column1, t1.column2, t2.column1, t2.column2
FROM table1 t1
INNER JOIN table2 t2 ON t1.id = t2.id;
2. 使用GROUP BY语句:
SELECT t1.column1, t1.column2, t2.column1, t2.column2
FROM table1 t1
INNER JOIN table2 t2 ON t1.id = t2.id
GROUP BY t1.column1, t1.column2, t2.column1, t2.column2;
阅读全文