Heim > Artikel > Backend-Entwicklung > Oracle 导出的txt数据怎么导入到另一个MySQL数据库中
Oracle 导出的txt数据如何导入到另一个MySQL数据库中
Oracle 导出的txt数据如何导入到另一个MySQL数据库中
txt文件数据如下:
流水号 姓名 问题
001 张三 感冒
002 李四 发烧
003 王五 头疼
如何将这个文件的数据通过PHP导入到MySQL数据库中
------解决方案--------------------
load data local infile…… <br><font color="#e78608">------解决方案--------------------</font><br> 不用php,直接sql语句:<br>Load Data InFile 'D:/Data.txt' Into Table `TableTest` Fields Terminated By '\t' Enclosed By '\n';<br><br>或者图形界面导入。 <br><font color="#e78608">------解决方案--------------------</font><br>你这是带标题的格式,需删去标题后再考虑导入方法 <br><font color="#e78608">------解决方案--------------------</font><br>也可以用SQL SERVER 自带的导入导出工具<br> <div class="clear"> </div>