Computer Science

Which function is used to read one record from the database?

Python MySQL

1 Like

Answer

The fetchone() function fetches only one row from the result set in the form of a tuple or a list.

Answered By

3 Likes


Related Questions