📜  如何只导出mysql程序代码示例

📅  最后修改于: 2022-03-11 15:05:16.960000             🧑  作者: Mango

代码示例1
# specific database
mysqldump -h the_host -u the_user -p -n -d -t --routines --triggers the_database_name > the_routines.sql
# all databases
mysqldump -h the_host -u the_user -p -n -d -t --routines --triggers --all-databases > the_routines.sql