最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

MySQL Load data statement convert Postgres field - Stack Overflow

programmeradmin1浏览0评论

I want to load csv file into MySQL db. This file contains some fields in Postgres fields formatting, eg boolean is 't'. In MySQL db these fields has TINYINT(1) type as its boolean too. So what I want to do is convert Postgres 't' into 1 on the fly, while running LOAD DATA INFILE statement.

Is it a way to do this or I need to preprocess file before I can use it inside sql? Files that I need to process is a bit large so I want to avoid additional file operations on it.

LOAD DATA 
    INFILE '/load-data/photos.txt'
    INTO TABLE photos
    FIELDS TERMINATED BY '\t';

I want to load csv file into MySQL db. This file contains some fields in Postgres fields formatting, eg boolean is 't'. In MySQL db these fields has TINYINT(1) type as its boolean too. So what I want to do is convert Postgres 't' into 1 on the fly, while running LOAD DATA INFILE statement.

Is it a way to do this or I need to preprocess file before I can use it inside sql? Files that I need to process is a bit large so I want to avoid additional file operations on it.

LOAD DATA 
    INFILE '/load-data/photos.txt'
    INTO TABLE photos
    FIELDS TERMINATED BY '\t';
Share Improve this question asked 2 days ago RomanKovalevRomanKovalev 8613 gold badges11 silver badges30 bronze badges 1
  • Input Preprocessing – Akina Commented yesterday
Add a comment  | 

1 Answer 1

Reset to default 3

Load that column into a user variable, then you can process it in the SET clause to get the desired value.

LOAD DATA INFILE '/load-data/photos.txt'
INTO TABLE photos
FIELDS TERMINATED BY '\t'
(col1, col2, @boolean_col3, @date_col4, @ignored_col5, col6)
SET col3 = (@boolean_col3 = 't'),
    col4 = STR_TO_DATE(@date_col4, '%m/%d/%Y')

So you list all the columns that should be written directly from the CSV file, and use user variables like @boolean_col to process other columns to get the actual column value.

发布评论

评论列表(0)

  1. 暂无评论