Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. USE [TagnetOE]
  2.  
  3. go
  4.  
  5. INSERT INTO [dbo].[railsaddressbook]
  6. ([addressbookid],
  7. [businessname],
  8. [address],
  9. [roomfloordepartment],
  10. [city],
  11. [state],
  12. [zip],
  13. [persontosee],
  14. [contactphone],
  15. [contactphoneext],
  16. [country])
  17. VALUES (Newid(),
  18. 'John Marshall Law School',
  19. '315 S Plymouth',
  20. NULL,
  21. 'CHICAGO',
  22. 'IL',
  23. '60604',
  24. 'Attention circulation staff',
  25. '312.427.2737 x 266',
  26. NULL,
  27. NULL)
  28.  
  29. go
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement