からCOUNT取得します。は、私が持っているSQLAlchemyの
res
からカウント値を取得するにはどうすればよいですか?
RESがインデックスによってアクセスされていませんが、私はこれを考え出した:右の簡単な方法があるに違いありません
count=None
for i in res:
count = res[0]
break
?それは何ですか?私はまだそれを発見していない。 注:dbはpostgres
dbです。データベースから返される列の反復可能であるはを開梱と呼ばれる何を求めている、ResultProxy
はiterableあるので、我々はSQLAlchemyの中
# there will be single record
record, = db.engine.execute('select count(id) from sometable')
# this record consist of single value
count, = record