douwei7471 2014-05-07 20:43
浏览 181
已采纳

使用LOAD DATA INFILE时,将CSV时间戳导入MySQL可接受的格式

I have a CSV file with the timestamp in the following format

 timestamp,             day_chan2, day_chan3
01/02/2014 00:00,             9,    2
01/02/2014 00:00,            16,    5

I am trying to import it into a MySQL database using LOAD DATA INFILE

$query_name = "LOAD DATA INFILE ' "
                                . $file_path . 
                                "' INTO TABLE '"
                                . $this->table_name . 
                                 " ' FIELDS TERMINATED BY '\,' 
                                 LINES TERMINATED BY '\
' 
                                 IGNORE 1 LINES 
                                 (`time_stamp`,`day_chan2`,`day_chan3`)";

My problem is the following: how do I convert the timestamp into a format acceptable to my MySQL while importing it into the database?

I am clueless now on how to change the timestamp into a proper timestamp which I can use to query later.

  • 写回答

2条回答 默认 最新

  • doudi8525 2014-05-07 20:53
    关注

    I've never tried this, but you might be able to do something like:

    $query_name = "LOAD DATA INFILE ' "
                                    . $file_path . 
                                    "' INTO TABLE '"
                                    . $this->table_name . 
                                     " ' FIELDS TERMINATED BY '\,' 
                                     LINES TERMINATED BY '\
    ' 
                                     IGNORE 1 LINES 
                                     (@mytimestamp,`day_chan2`,`day_chan3`)
                                     SET time_stamp=STR_TO_DATE(@mytimestamp, '%d/%m/%Y %h:%i');"
    

    There are examples of this in the MySQL documentation:

    http://dev.mysql.com/doc/refman/5.1/en/load-data.html

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 求差集那个函数有问题,有无佬可以解决
  • ¥15 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题