Skip to content

Instantly share code, notes, and snippets.

@shaneis
Last active March 28, 2018 16:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shaneis/85df904f3ed84b104f6c7e7c69e6228f to your computer and use it in GitHub Desktop.
Save shaneis/85df904f3ed84b104f6c7e7c69e6228f to your computer and use it in GitHub Desktop.
CREATE TABLE #temp (
id int NOT NULL
, results varchar(50) NOT NULL
);
GO
INSERT INTO #temp (id, results)
EXECUTE dbo.WhatYouGot;
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment