简体   繁体   中英

How to import date and convert time zone?

I have a CSV file with a date field in UTC . I want to import data into redshift in EST . Is it possible to specify the timezone in the COPY or should I use UPDATE ?

I tried this but it does not work. Error: subquery returns more than one row query

UPDATE myTable
SET DATE = (
        SELECT convert_timezone('Europe/Paris', DATE)
        FROM myTable
        );
UPDATE myTable
    SET date = convert_timezone('Europe/Paris', date);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM