Created
August 22, 2017 22:31
-
-
Save dperussina/47d1e5a9c49891d3b959105cdefb36b4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
USE [TagnetOE] | |
go | |
INSERT INTO [dbo].[railsaddressbook] | |
([addressbookid], | |
[businessname], | |
[address], | |
[roomfloordepartment], | |
[city], | |
[state], | |
[zip], | |
[persontosee], | |
[contactphone], | |
[contactphoneext], | |
[country]) | |
VALUES (Newid(), | |
'John Marshall Law School', | |
'315 S Plymouth', | |
NULL, | |
'CHICAGO', | |
'IL', | |
'60604', | |
'Attention circulation staff', | |
'312.427.2737 x 266', | |
NULL, | |
NULL) | |
go |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment