I imported the MySQL dump file to my MySQL server using the following command.
mysql> create database database_name;
mysql> use database_name;
Linux command line
$ mysql -u user_name -p database_name < /tmp/test1.dmp
But when viewing the database using the phyMyAdminnewly created database_name does not display the table relationship. It shows only tables, but not relationships.
Is there any configuration required before importing the database into the mysql database?
How to extract relationships between tables?
indie source
share