Tip: Backing Up MySQL Databases Via Command Line
Mar 21, 2017
</p>
<pre>mysqldump -u username -p database > backup_name.sql</pre>
<p>
I always forget this command. I always try to attempt to go mysql dump
instead of mysqldump
. Hopefully posting this little blurb will give me an easy reference in the future!