Skip to content

Instantly share code, notes, and snippets.

@cheeaun
Created April 12, 2009 01:38
Show Gist options
  • Save cheeaun/93816 to your computer and use it in GitHub Desktop.
Save cheeaun/93816 to your computer and use it in GitHub Desktop.
Change column name in SQLite
ALTER TABLE table ADD newColumn INTEGER;
UPDATE table SET newColumn = oldColumn;
@ssatyamchauhan
Copy link

it is not working post syntax for rename the column name in tables

@krunalpatel3
Copy link

krunalpatel3 commented Sep 24, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment