Posts by David • 65 points
2 posts
-
1
votes1
answer719
viewsQ: Create a dictionary in Python by receiving values from the database
After accessing the database and have the desired query in case: ... c = conn.cursor() c.execute('SELECT `tb1`.`Nome`, `tb1`.`Apelido` FROM tb1') How to create a python dictionary for my command…
-
4
votes4
answers3989
viewsQ: How to display 2 columns from 2 different tables in Mysql?
I have 2 tables with multiple columns. I would like you to display individual columns of more than one table at the same time: tabela1 | tabela2 Nome | Apelido…