Computer Science
fetchone() fetches the next row of a query result set.
Python MySQL
1 Like
Answer
True
Reason — The fetchone() method fetches only one row from the result set in the form of a tuple or a list. This function returns one record from the result set each time it is called. The first call will return the first record, the next call will return the second record, and so on.
Answered By
1 Like