Selectively Dump Data with mysqldump

You can dump part of a table using the mysqldump in command line.  The command is… The “-t” flag will suppress the “DROP” and “CREATE” commands so you will be left with a clean “INSERT” statement that you can load where ever needed. You can also use a shortcut for the “where” by using just […]