KnowledgeBoat Logo

Computer Science

Which of the following is not a legal method for fetching records from database from within Python?

  1. fetchone()
  2. fetchtwo()
  3. fetchall()
  4. fetchmany()

Python MySQL

3 Likes

Answer

fetchtwo()

Reason — The fetchall() method, fetchmany() method, or fetchone() method are the legal methods used for fetching records from the result set.

Answered By

3 Likes


Related Questions