Skip to content

Instantly share code, notes, and snippets.

@hsuyuming
Created August 22, 2019 16:12
Show Gist options
  • Save hsuyuming/a812ffe49f5a40a533e9446f9dc726c2 to your computer and use it in GitHub Desktop.
Save hsuyuming/a812ffe49f5a40a533e9446f9dc726c2 to your computer and use it in GitHub Desktop.
update dbo.TEST set COL1 = 'a1' where id =1;
update dbo.TEST set COL1 = 'aa1' where id =1;
update dbo.TEST set COL1 = 'aa2' where id =2;
update dbo.TEST set COL1 = 'aa9' where id =9;
select * from dbo.TEST;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment