Selecting distinct column values in SQLAlchemy/Elixir
You can query column properties of mapped classes and the Query class has a generative distinct() method: for value in Session.query(Table.column).distinct(): pass
You can query column properties of mapped classes and the Query class has a generative distinct() method: for value in Session.query(Table.column).distinct(): pass