Select From all tables - MySQL

前端 未结 6 422
灰色年华
灰色年华 2020-12-10 10:54

I have a mySQL database called listDB that contain several tables with column name Product etc. I want to SELECT from all tables where

6条回答
  •  轮回少年
    2020-12-10 11:45

    why you dont just dump the mysql database but with extension when you run without --single-transaction you will interrupt the connection to other clients:

    mysqldump --host=hostname.de --port=0000 --user=username --password=password --single-transaction --skip-add-locks --skip-lock-tables --default-character-set=utf8 datenbankname > mysqlDBBackup.sql 
    

    after that read out the file and search for what you want.... in Strings.....

提交回复
热议问题