Skip to content

Instantly share code, notes, and snippets.

@bnsheehy
Created December 26, 2021 22:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bnsheehy/dac8679a201c8289ab5752f9ba18ab6f to your computer and use it in GitHub Desktop.
Save bnsheehy/dac8679a201c8289ab5752f9ba18ab6f to your computer and use it in GitHub Desktop.
Create Backup Table for PnF Data
CREATE TABLE base_pnf_data_historical_bkup AS SELECT * FROM base_pnf_data_historical;
INSERT INTO base_pnf_data_historical_bkup AS SELECT * FROM base_pnf_data_historical;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment