php - How to create a table in MySQL from the sql dump of a table taken from other database instance? -
i'm using mysql via phpmyadmin.
i've exported 1 table 1 database instance in mysql.
now want create same table data instance of mysql database downloaded sql dump.
can create it? if yes, how? if no, why?
you have import dump database done terminal using
mysql -u<username> -p<password> <database> < <dump.sql>
assuming dump file contains create table
query , associated data table or table exist in database.
you phpmyadmin.
- first select database
- click
import
button - select file import clicking
file import
- finally click
go
start import
Comments
Post a Comment