query to count the number of rows in a table in sqlalchemy

Solutions on MaxInterview for query to count the number of rows in a table in sqlalchemy by the best coders in the world

showing results for - "query to count the number of rows in a table in sqlalchemy"
Juliette
23 Sep 2020
1UserImage.query.filter(UserImage.user_id == 1).count()
2