Advertisement
Guest User

Untitled

a guest
May 1st, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. CREATE TRIGGER [Foo]
  2. AFTER INSERT
  3. ON [Bar]
  4. BEGIN
  5. UPDATE tamp SET count = count + 1;
  6. END
  7.  
  8. insert into Bar (%ColumnName%)
  9. values ('%SomeValue1%'), ('%SomeValue2%'), ('%SomeValue3%'), ('%SomeValue4%')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement