Nowhere on the Internet is there a simple guide to a few lines in a simple SELECT for SQLAlchemy 1.0.
Assuming I established a database connection using create_engine() and my database tables already exist, I would like to know how to execute the following query:
select name, age from users where name = 'joe' and age = 100
source share