msyql在查询字段中的所有记录,不重复

mysql> select * from a

+----+------+--------------+
| id | name | descri       |
+----+------+--------------+
|  1 | a1   | 我是第一个a1 |
|  2 | a2   | 我是第一个a2 |
|  3 | a3   | 我是a3       |
|  4 | a1   | 我是第二个a1 |
|  5 | a2   | 我是第二个a2 |
+----+------+--------------+

5 rows in set


mysql> select a1.* from a a1 right join (select max(id) id from a group by name) a2 on a1.id = a2.id where a1
.id is not null;
+----+------+--------------+
| id | name | descri       |
+----+------+--------------+
|  3 | a3   | 我是a3       |
|  4 | a1   | 我是第二a1 |
|  5 | a2   | 我是第二a2 |
+----+------+--------------+
3 rows in set

原文地址:https://www.cnblogs.com/mfrbuaa/p/5039644.html