1. 程式人生 > 資料庫 >mysql8.0使用mysqldump報錯:Unknown table ‘column_statistics‘ in information_schema (1109)

mysql8.0使用mysqldump報錯:Unknown table ‘column_statistics‘ in information_schema (1109)

指令碼:

#!/bin/bash
mysqldump -h127.0.0.1 -uroot -p123456 test > 1.sql

報錯:

Unknown table 'COLUMN_STATISTICS' in information_schema (1109)

解決:新增引數 –column-statistics=0

 

分析:多是mysql8.0+高版本的 mysqldump命令 去訪問低版本的mysql例項發生