In postgresql we can get total row count without sending column.
select count(*) from mytable; -- returns count (total number of rows)
Is there any way to so similar thing in sqlalchemy without doing raw query
session.execute('select count(*) from mytable;')