Skip to content

Instantly share code, notes, and snippets.

@betterdatascience
Created November 9, 2020 20:35
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 betterdatascience/7b7f0cce877c98fc024db6013de9626f to your computer and use it in GitHub Desktop.
Save betterdatascience/7b7f0cce877c98fc024db6013de9626f to your computer and use it in GitHub Desktop.
001_sql_regression
CREATE SEQUENCE seq_housingprices;
ALTER TABLE housingprices ADD (
row_id INTEGER DEFAULT seq_housingprices.NEXTVAL
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment