1.准备本地文件(pet.txt)

  mysql导入本地文件(作业)-LMLPHP

2.在CMD中启动mysql服务,然后输入以下命令导入(pet.txt)

  load data local infile '路劲' into table pet;

  mysql导入本地文件(作业)-LMLPHP

3.查看是否导入成功

  select * from pet;

  mysql导入本地文件(作业)-LMLPHP

05-11 18:00