mirror of
https://github.com/namibia/awesome-cheatsheets.git
synced 2025-01-03 06:10:15 +00:00
7 lines
346 B
Bash
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
|