Skip to content

Instantly share code, notes, and snippets.

@Vaccano
Created August 28, 2012 16:20
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save Vaccano/3499835 to your computer and use it in GitHub Desktop.
TableInsert.sql
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