1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-05-28 10:20:48 +00:00
awesome-cheatsheets/databases/mysql.sh
2020-06-21 18:37:44 +02:00

7 lines
346 B
Bash

# *****************************************************************************
# BASICS
# *****************************************************************************
mysqldump -h hostname -u username -p database_name -P port > file.sql # Export database
mysql -u username -p database_name < file.sql # Import database