导出: mysqldump -uroot -p -ntd -R test1 > sql.sql -ntd 是表示导出存储过程 -R是表示导出函数 导入: mysql -uroot -p test1 < sql.sql