cursor.execute('SELECT userid,productid,description from goqii_store_product_rating_log')
Above is the query I am trying to read from MySQL database using python.
Here the Datatype for description column is TEXT.
When I run this I get the following error:
UnicodeDecodeError: 'charmap' codec can't decode byte 0x8d in position 8: character maps to
How can I overcome this error and read the data smoothly??.
Python Version used : 3.7.3
Regards