简体   繁体   中英

Transfer data between tables in Amazon Redshift

How to process and update/append data from table1 to table2 in AWS Redshift?

The transfer of data between the tables needs to happen automatically whenever the data is loaded from S3 into table1.

Table1 data is copied from AWS S3 though AWS Data Pipeline.

You can run an SQL command to copy the data, such as:

INSERT INTO table2
SELECT * FROM table1

However, there is no mechanism to trigger this automatically.

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