Created
July 10, 2018 14:07
-
-
Save aquasmit/c3d6162f38c0d9528afe7cdf1c2aa684 to your computer and use it in GitHub Desktop.
sqlserver-create-table-like-alternative-for-sqlserver
This file contains hidden or 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
/*This will create new table 'newTableNameToBeCreated' with same structure as 'myRealTable' */ | |
/* no data will be inserted into the new table */ | |
SELECT * | |
into newTableNameToBeCreated | |
FROM myRealTable | |
where 0=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment