diff --git "a/note/MySQL/MYSQL\346\225\260\346\215\256\345\272\223\345\244\207\344\273\275\345\222\214\346\201\242\345\244\215.md" "b/note/MySQL/MYSQL\346\225\260\346\215\256\345\272\223\345\244\207\344\273\275\345\222\214\346\201\242\345\244\215.md" index 0b0a7a6..0d355cd 100644 --- "a/note/MySQL/MYSQL\346\225\260\346\215\256\345\272\223\345\244\207\344\273\275\345\222\214\346\201\242\345\244\215.md" +++ "b/note/MySQL/MYSQL\346\225\260\346\215\256\345\272\223\345\244\207\344\273\275\345\222\214\346\201\242\345\244\215.md" @@ -803,7 +803,7 @@ balance: 0 **举例3:**将atguigu数据库account表中的记录导出到xml文件,使用--xml参数,具体语句如下。 ```mysql -mysql -uroot -p --xml --execute="SELECT * FROM account;" atguigu>"/var/lib/mysqlfiles/account_3.xml" +mysql -uroot -p --xml --execute="SELECT * FROM account;" atguigu>"/var/lib/mysql/files/account_3.xml" ``` ```mysql