Skip to content

Instantly share code, notes, and snippets.

@operateur-mar
Created September 28, 2018 09:41
Show Gist options
  • Save operateur-mar/265e425844ea06c83ff06dc97f9a43a9 to your computer and use it in GitHub Desktop.
Save operateur-mar/265e425844ea06c83ff06dc97f9a43a9 to your computer and use it in GitHub Desktop.
/* Delete Full Table */
DROP TABLE customer
/* Edit Table : Add new column */
ALTER TABLE customer ADD age integer
/* Edit Table : Drop column Age */
ALTER TABLE customer DROP COLUMN age
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment