Mysql Database SQL Script Import
1. Enter the mysql command line window
mysql -uroot -p ***** *
2. Display all databases
show databases;
3. Select the database
use database name
4. Display all tables of the specified database
show tables ;
5. Import the specified sql script data
SOURCE The absolute path of the script to be imported Example : SOURCE /songwp/ project /java/ workreal/workereal0410.sql
0 Comments