How to use Python cursor’s fetchall, fetchmany(), fetchone() to read records from SQL

Jack Dong
4 min readDec 13, 2020

This article demonstrates the use of Python’s cursor class methods fetchall, fetchmany(), fetchone() to retrieve rows from a database table. This article applies to all the relational databases, for example, MySQL, PostgreSQL.

We generally use the following Python module to work with Database.

--

--