Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to select one row each for each distinct value of a column. Here I want to perform it for col1:

| ID | COL1 | COL2 |
--------------------
|  1 |    0 |    0 |
|  2 |    0 |    1 |
|  3 |    1 |   11 |
|  4 |    1 |   12 |
|  5 |    1 |   16 |

Which results in:

| ID | COL1 | COL2 |
--------------------
|  1 |    0 |    0 |
|  3 |    1 |   11 |

as 0 and 1 were the distinct values for col1. I am not strict about which row is returned (no need of least value of id, for example) as long as distinct values of column is returned.

Please assume the model is called TestModel and everything is fully mapped.

share|improve this question
In MySQL, that's a simple GROUP BY – Jan Dvorak Nov 20 '12 at 7:01

2 Answers

You need to use sub-query for that. And also you have to choose MIN or MAX function:

SELECT * FROM TestModel
WHERE ID IN(SELECT MIN(id) 
            FROM TestModel 
            GROUP BY col1)

Output:

| ID | COL1 | COL2 |
--------------------
|  1 |    0 |    0 |
|  3 |    1 |   11 |

See this SQLFiddle


SA version of the solution:

subq = (session.query(func.min(TestModel.id).label("min_id")).
        group_by(TestModel.col1)).subquery()

qry = (session.query(TestModel).
       join(subq, and_(TestModel.id == subq.c.min_id)))
share|improve this answer
I want syntax for SQLAlchemy, not plain SQL – aitchnyu Nov 20 '12 at 7:25
2  
updated answer with SA version – van Nov 23 '12 at 6:19
@van: Thanks. Actually I don't have knowledge about SQLAlchemy. :) – hims056 Nov 23 '12 at 6:21
@aitchnyu: See the updated answer. – hims056 Nov 23 '12 at 6:22
@van, please tell the advantages of your query; it is more complex than my answer, and I see no obvious benefits. – aitchnyu Nov 23 '12 at 9:51
show 1 more comment
up vote 1 down vote accepted

This will return TestModel objects for each distinct values of TestModel.col1 column, just like GROUP BY queries in SQL.

session.query( TestModel).group_by( TestModel.col1).all()
share|improve this answer
Maybe you should elaborate on this a bit more. Code-only answers aren't really helpful. – Linus Kleen Nov 21 '12 at 11:20
1  
You were right. Updated so. – aitchnyu Nov 21 '12 at 14:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.