Created
November 11, 2021 17:31
-
-
Save sreejithbnaick/4964875c086f70243be4b7f4f334c72c to your computer and use it in GitHub Desktop.
Drop DB & Import DB Dump
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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