mirror of
https://github.com/namibia/awesome-cheatsheets.git
synced 2024-12-22 10:08:54 +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
|