向mysql中匯入.sql檔案

My_name_is_ZwZ發表於2018-10-27

我這裡有兩個.sql檔案:

1. 表的.sql檔案;

2.表中資料的.sql檔案。

顯然我們匯入的步驟是:

建立一個資料庫 -------> 匯入表的.sql檔案 --------> 匯入表中資料的.sql檔案

建立資料庫:

create database ssmdemo;

 使用此資料庫(此時資料庫中沒有表):

use ssmdemo;

 將表的.sql檔案匯入:

source F:/sql_table.sql; #其中的“F:/sql_table.sql是要匯入的.sql檔案的絕對路徑”

將表中的資料匯入:

source F:/sql_data.sql;

 此時,就可以在資料庫中看到相對應的表,以及表中的資料。

相關文章