Created
August 28, 2012 16:20
-
-
Save Vaccano/3499835 to your computer and use it in GitHub Desktop.
TableInsert.sql
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
create table #MyTable(MyValue int, MyGroup varchar(5)) | |
insert into #MyTable values | |
(56,'I'), (12,'I'), (56, 'II'), (12, 'II'), (56, 'III'), (56, 'IV'), (56, 'V'), (12, 'V') | |
select MyValue, MyGroup | |
from #MyTable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment