如何在MySQL中的每个条件下选择一行?

时间:2019-05-10 08:16:00

标签: mysql sql

我的代码有麻烦。我想在MySQL中每个条件仅获得一行。

我有一张这样的桌子:

ID - Position  - Content
1       2         abc
2       1         def
3       1         ghk
4       3         pol
5       2         lop
6       4         gty

所以我希望返回的结果是:position = 1->最高ID的行,然后传递到position = 2->最高ID的行。我不知道要编码。

3 个答案:

答案 0 :(得分:1)

使用子查询来测试ID

drop table if exists t;
create table t
(ID int, Position int, Content varchar(3));
insert into t values
(1   ,    2    ,     'abc'),
(2   ,    1    ,     'def'),
(3   ,    1    ,     'ghk'),
(4   ,    3    ,     'pol'),
(5   ,    2    ,     'lop'),
(6   ,    4    ,     'gty');


select t.*
from t
where t.id = (select min(id) from t t1 where t1.position = t.position);

+------+----------+---------+
| ID   | Position | Content |
+------+----------+---------+
|    1 |        2 | abc     |
|    2 |        1 | def     |
|    4 |        3 | pol     |
|    6 |        4 | gty     |
+------+----------+---------+
4 rows in set (0.00 sec)

答案 1 :(得分:0)

您可以尝试像下面的查询

SELECT t.*
FROM t
WHERE t.id IN (SELECT min(id) FROM t GROUP BY position);

答案 2 :(得分:0)

尝试此查询。

 SELECT DISTINCT * FROM table-name ORDER BY ID ASC;

DISTINCT在单个列上运行。不支持多列的DISTINCT。 同一列无法打印 和 按id asc的使用顺序进行排序,并且所有记录打印1-n表示最小id