Import SQL file into mysql

前端 未结 18 1437
盖世英雄少女心
盖世英雄少女心 2020-11-28 00:16

I have a database called nitm. I haven\'t created any tables there. But I have a SQL file which contains all the necessary data for the database. The file is

18条回答
  •  执念已碎
    2020-11-28 01:13

    You are almost there use

    mysql> \. c:/nitm.sql;
    

    You may also access help by

    mysql> \?
    

提交回复
热议问题