Skip to content

Instantly share code, notes, and snippets.

@sreejithbnaick
Created November 11, 2021 17:31
Show Gist options
  • Select an option

  • Save sreejithbnaick/4964875c086f70243be4b7f4f334c72c to your computer and use it in GitHub Desktop.

Select an option

Save sreejithbnaick/4964875c086f70243be4b7f4f334c72c to your computer and use it in GitHub Desktop.
Drop DB & Import DB Dump
mysql> DROP DATABASE [dbName];
mysql> CREATE DATABASE [dbName];
mysql> USE [dbName];
mysql> SOURCE [pathToSQLDump];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment