Python Forum
Reading data from mysql. - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Reading data from mysql. (/thread-33751.html)



Reading data from mysql. - stsxbel - May-23-2021

there is a table, let's call it test. The table has columns (let's call id, date, name1, name2). The data is entered into the table. Tell me how to correctly make a request in python to read the latest data from the name1 column.


RE: Reading data from mysql. - Yoriz - May-23-2021

Here is a link to a tutorial
Python and MySQL Database: A Practical Introduction


RE: Reading data from mysql. - stsxbel - May-23-2021

thanks, figured it out