Home > Backend Development > PHP Tutorial > Oracle 导出的txt数据怎么导入到另一个MySQL数据库中

Oracle 导出的txt数据怎么导入到另一个MySQL数据库中

WBOY
Release: 2016-06-13 10:22:19
Original
828 people have browsed it

Oracle 导出的txt数据如何导入到另一个MySQL数据库中
Oracle 导出的txt数据如何导入到另一个MySQL数据库中
txt文件数据如下:
流水号 姓名 问题
001 张三 感冒
002 李四 发烧
003 王五 头疼
如何将这个文件的数据通过PHP导入到MySQL数据库中

------解决方案--------------------

SQL code
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>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template