Skip to content

Instantly share code, notes, and snippets.

View himanshu8dev's full-sized avatar
🎯
Focusing

Himanshu himanshu8dev

🎯
Focusing
View GitHub Profile
@himanshu8dev
himanshu8dev / mysql-command
Created January 31, 2019 07:45
Mysql By Command Line
#Export Database :
mysqldump -u root -p database > /var/www/html/Data/db.sql
#Import Database
mysql -u root -p new_database < db.sql
#Copy Database
create database copy_database; export/import;