Add extra column of data when using LOAD DATA LOCAL INFILE

前端 未结 2 1957
自闭症患者
自闭症患者 2021-01-19 00:56

I\'m using the following LOAD DATA LOCAL INFILE query to read data from a file and insert it into a table. Everything works great as is. However I need to modify the query

2条回答
  •  猫巷女王i
    2021-01-19 01:27

    Rather than add this field to the query, it would be easier to add it to the table:

    ALTER TABLE myTable
        ADD COLUMN datetime_entered TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP;
    

    Any insertion will then automatically have a timestamp of when the record was entered.

提交回复
热议问题