• mysql 导入txt数据到数据表【原创】


    1.如何将数据表导入到mysql的表中,可以使用:load data infile ... into table  ... 

    示例:

     
    load data infile 'e:datainfo.txt' into table `table_1`  fields terminated by '	'    lines terminated by'
    '  
    参数说明,其中:
     fields terminated by ' ' :表示使用tab制表符作为字段分隔符;
     lines terminated by' '  :表示使用回车换行符作为行分隔符
     
     
    2.还有一种,比如想把5列数据导入到3列的表中,使用变量占位。
    示例:
    load data infile 'e:data2info.txt' into table `table_2`  fields terminated by '	'    lines terminated by'
    ' (@abc,uid,name,@abc,age)
    @abc表示的是变量,把数据中的第一列赋值给一个变量,导入时等于丢掉这一列数据。
     
    3.还有一种,有一个自增字段id,数据有3列,表有4列。id是自增的,数据中无该列。
    比如数据:
     
    58297    lisi    17
    58297    lisi    17
    58297    lisi    17
    58297    lisi    17
    58297    lisi    17
    58297    lisi    17
    示例:
    load data infile 'e:data3info.txt' into table `table_3`  fields terminated by '	'    lines terminated by'
    ' (uid,name,age)

    有的人,在导入数据时会遇到如下错误:

    查询:load data local infile "e:data1.txt" into table table(myid,myname,myaddr) fields terminated by ' ' lines terminat...

    错误代码: 1064
    You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'fields terminated by ' ' lines terminated by ' '' at line 1

    大概可能是在写导入语句的时候:把指定字段的部分放到了表名后面,导致的。应该放到最后。

    还有可能是mysql的版本不支持按照字段导入,那暂时无解。

    参考:

    LOAD DATA INFILE error 1064

  • 相关阅读:
    oracle RAC 更换IP
    12C oracle 12.1.0.2版本打补丁
    node name配置错误,导致grid日志在报警
    input_subsys 输入子系统框架分析
    www.bing.com
    getopt函数使用说明
    FreeType 矢量字体 测试移植(1)
    字符的编码方式
    在开发板上显示字符和中文
    块设备驱动程序的框架
  • 原文地址:https://www.cnblogs.com/wangqiideal/p/11138669.html
Copyright © 2020-2023  润新知