Skip to content

Instantly share code, notes, and snippets.

@aadennis
Created December 18, 2019 09:28
Show Gist options
  • Save aadennis/5ab0e73ac726a03c53dcb3e83232814d to your computer and use it in GitHub Desktop.
Save aadennis/5ab0e73ac726a03c53dcb3e83232814d to your computer and use it in GitHub Desktop.
set NOCOUNT ON;
drop table things;
go
create table things ([name] NVARCHAR(50), age INT);
go
insert into things ([name], age) values ($(name), $(age));
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment