Created
September 28, 2018 09:41
-
-
Save operateur-mar/265e425844ea06c83ff06dc97f9a43a9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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