P粉5660487902023-08-18 00:11:53
我通常在bash中這樣做(可能可以使用SQL,但我不確定是哪個表)
table_names=`echo "show tables"|mysql database_name -q -s|grep -v "show tables"` for table in $table_names do echo $table mysqldump database_name $table |grep file_id done;
然後你將在每個表中看到與file_id相關的內容。