How to import the teach_manger.sql data table file into the database
If it is the command line: Assume that the library where your table is located is called abc
use abc;
set names utf8;
source /path/teach_manger.sql;
If it is a mysql tool:
Open that library first and then right-click on that library and there will be a running sql file
If it is the command line: Assume that the library where your table is located is called abc
use abc;
set names utf8;
source /path/teach_manger.sql;
If it is a mysql tool:
Open that library first and then right-click on that library and there will be a running sql file