How can I dump MySQL database table only which will store my on drive 'c:', rather than whole database
here is my running python connect script:
cnx = mysql.connector.connect(user='test',
password ='test',host='192.168.25.63',
database='test',port='3306')
I also refer to this question using subprocess: How to copy a database with mysqldump and mysql in Python?
I just want to have a python script just like having MySQLdump using windows command.