Skip to content

Instantly share code, notes, and snippets.

@ArCiGo
Created May 20, 2019 00:11
Show Gist options
  • Save ArCiGo/284e3c79932ada153f3aec81ca699765 to your computer and use it in GitHub Desktop.
Save ArCiGo/284e3c79932ada153f3aec81ca699765 to your computer and use it in GitHub Desktop.
ALTER TABLE Customer ADD RFC VARCHAR(13) NULL;
GO
ALTER TABLE Customer ALTER COLUMN RFC INT NULL;
GO
ALTER TABLE Customer DROP COLUMN RFC;
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment