demo_python_mysql_show_tables.py:
x
 
import mysql.connector
mydb = mysql.connector.connect(
  host="localhost",
  user="myusername",
  passwd="mypassword",
  database="mydatabase"
)
mycursor = mydb.cursor()
mycursor.execute("SHOW TABLES")
for x in mycursor:
     print(x)
python@w3school.org.cn:/home/python#python demo_python_mysql_show_tables.py
('customers',)