Skip to content

Is it possible to restore data to a table after updating the table schema. #282

Answered by Slach
LalJohnGeon asked this question in Q&A
Discussion options

You must be logged in to vote

Why do you need backup for this use-case?

You can just use following SQL scenario

CREATE TABLE new_table ... ;

INSERT INTO new_table SELECT * FROM old_table;
DROP TABLE new_table SYNC;

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@LalJohnGeon
Comment options

@Slach
Comment options

Answer selected by Slach
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants