mysql> load data local infile '/Users/flint/learn/mysql/pet' into table bx_pet;
执行报错
ERROR 1148 (42000): The used command is not allowed with this MySQL version
解决办法:
在连接数据库的时候使用
mysql --local-infile -uroot -p 连接即可
mysql> load data local infile '/Users/flint/learn/mysql/pet' into table bx_pet;
执行报错
ERROR 1148 (42000): The used command is not allowed with this MySQL version
解决办法:
在连接数据库的时候使用
mysql --local-infile -uroot -p 连接即可
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。