pubsUSE [master] GO CREATE DATABASE [pubs] GO USE [pubs] GO EXEC dbo.sp_addtype @typename=N'tid', @phystype='varchar(6)', @nulltype='NOT NULL', @owner=N'dbo' GO EXEC dbo.sp_addtype @typename=N'id', @phystype='varchar(11)', @nulltype='NOT NULL', @owner=N'dbo' GO EXEC dbo.sp_addtype @typename=N'empid', @phystype='char(9)', @nulltype='NOT NULL', @owner=N'dbo' GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [stores]( [stor_id] [char](4) NOT NULL, [stor_name] [varchar](40) NULL, [stor_address] [varchar](40) NULL, [city] [varchar](20) NULL, [state] [char](2) NULL, [zip] [char](5) NULL ) ON [PRIMARY] GO INSERT [stores] ([stor_id], [stor_name], [stor_address], [city], [state], [zip]) VALUES (CONVERT(TEXT, N'6380'), CONVERT(TEXT, N'Eric the Read Books'), CONVERT(TEXT, N'788 Catamaugus Ave.'), CONVERT(TEXT, N'Seattle'), CONVERT(TEXT, N'WA'), CONVERT(TEXT, N'98056')) INSERT [stores] ([stor_id], [stor_name], [stor_address], [city], [state], [zip]) VALUES (CONVERT(TEXT, N'7066'), CONVERT(TEXT, N'Barnum''s'), CONVERT(TEXT, N'567 Pasadena Ave.'), CONVERT(TEXT, N'Tustin'), CONVERT(TEXT, N'CA'), CONVERT(TEXT, N'92789')) INSERT [stores] ([stor_id], [stor_name], [stor_address], [city], [state], [zip]) VALUES (CONVERT(TEXT, N'7067'), CONVERT(TEXT, N'News & Brews'), CONVERT(TEXT, N'577 First St.'), CONVERT(TEXT, N'Los Gatos'), CONVERT(TEXT, N'CA'), CONVERT(TEXT, N'96745')) INSERT [stores] ([stor_id], [stor_name], [stor_address], [city], [state], [zip]) VALUES (CONVERT(TEXT, N'7131'), CONVERT(TEXT, N'Doc-U-Mat: Quality Laundry and Books'), CONVERT(TEXT, N'24-A Avogadro Way'), CONVERT(TEXT, N'Remulade'), CONVERT(TEXT, N'WA'), CONVERT(TEXT, N'98014')) INSERT [stores] ([stor_id], [stor_name], [stor_address], [city], [state], [zip]) VALUES (CONVERT(TEXT, N'7896'), CONVERT(TEXT, N'Fricative Bookshop'), CONVERT(TEXT, N'89 Madison St.'), CONVERT(TEXT, N'Fremont'), CONVERT(TEXT, N'CA'), CONVERT(TEXT, N'90019')) INSERT [stores] ([stor_id], [stor_name], [stor_address], [city], [state], [zip]) VALUES (CONVERT(TEXT, N'8042'), CONVERT(TEXT, N'Bookbeat'), CONVERT(TEXT, N'679 Carson St.'), CONVERT(TEXT, N'Portland'), CONVERT(TEXT, N'OR'), CONVERT(TEXT, N'89076')) SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [jobs]( [job_id] [smallint] IDENTITY(1,1) NOT NULL, [job_desc] [varchar](50) NOT NULL, [min_lvl] [tinyint] NOT NULL, [max_lvl] [tinyint] NOT NULL ) ON [PRIMARY] GO SET IDENTITY_INSERT [jobs] ON INSERT [jobs] ([job_id], [job_desc], [min_lvl], [max_lvl]) VALUES (1, CONVERT(TEXT, N'New Hire - Job not specified'), 10, 10) INSERT [jobs] ([job_id], [job_desc], [min_lvl], [max_lvl]) VALUES (2, CONVERT(TEXT, N'Chief Executive Officer'), 200, 250) INSERT [jobs] ([job_id], [job_desc], [min_lvl], [max_lvl]) VALUES (3, CONVERT(TEXT, N'Business Operations Manager'), 175, 225) INSERT [jobs] ([job_id], [job_desc], [min_lvl], [max_lvl]) VALUES (4, CONVERT(TEXT, N'Chief Financial Officier'), 175, 250) INSERT [jobs] ([job_id], [job_desc], [min_lvl], [max_lvl]) VALUES (5, CONVERT(TEXT, N'Publisher'), 150, 250) INSERT [jobs] ([job_id], [job_desc], [min_lvl], [max_lvl]) VALUES (6, CONVERT(TEXT, N'Managing Editor'), 140, 225) INSERT [jobs] ([job_id], [job_desc], [min_lvl], [max_lvl]) VALUES (7, CONVERT(TEXT, N'Marketing Manager'), 120, 200) INSERT [jobs] ([job_id], [job_desc], [min_lvl], [max_lvl]) VALUES (8, CONVERT(TEXT, N'Public Relations Manager'), 100, 175) INSERT [jobs] ([job_id], [job_desc], [min_lvl], [max_lvl]) VALUES (9, CONVERT(TEXT, N'Acquisitions Manager'), 75, 175) INSERT [jobs] ([job_id], [job_desc], [min_lvl], [max_lvl]) VALUES (10, CONVERT(TEXT, N'Productions Manager'), 75, 165) INSERT [jobs] ([job_id], [job_desc], [min_lvl], [max_lvl]) VALUES (11, CONVERT(TEXT, N'Operations Manager'), 75, 150) INSERT [jobs] ([job_id], [job_desc], [min_lvl], [max_lvl]) VALUES (12, CONVERT(TEXT, N'Editor'), 25, 100) INSERT [jobs] ([job_id], [job_desc], [min_lvl], [max_lvl]) VALUES (13, CONVERT(TEXT, N'Sales Representative'), 25, 100) INSERT [jobs] ([job_id], [job_desc], [min_lvl], [max_lvl]) VALUES (14, CONVERT(TEXT, N'Designer'), 25, 100) SET IDENTITY_INSERT [jobs] OFF SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [publishers]( [pub_id] [char](4) NOT NULL, [pub_name] [varchar](40) NULL, [city] [varchar](20) NULL, [state] [char](2) NULL, [country] [varchar](30) NULL ) ON [PRIMARY] GO INSERT [publishers] ([pub_id], [pub_name], [city], [state], [country]) VALUES (CONVERT(TEXT, N'0736'), CONVERT(TEXT, N'New Moon Books'), CONVERT(TEXT, N'Boston'), CONVERT(TEXT, N'MA'), CONVERT(TEXT, N'USA')) INSERT [publishers] ([pub_id], [pub_name], [city], [state], [country]) VALUES (CONVERT(TEXT, N'0877'), CONVERT(TEXT, N'Binnet & Hardley'), CONVERT(TEXT, N'Washington'), CONVERT(TEXT, N'DC'), CONVERT(TEXT, N'USA')) INSERT [publishers] ([pub_id], [pub_name], [city], [state], [country]) VALUES (CONVERT(TEXT, N'1389'), CONVERT(TEXT, N'Algodata Infosystems'), CONVERT(TEXT, N'Berkeley'), CONVERT(TEXT, N'CA'), CONVERT(TEXT, N'USA')) INSERT [publishers] ([pub_id], [pub_name], [city], [state], [country]) VALUES (CONVERT(TEXT, N'1622'), CONVERT(TEXT, N'Five Lakes Publishing'), CONVERT(TEXT, N'Chicago'), CONVERT(TEXT, N'IL'), CONVERT(TEXT, N'USA')) INSERT [publishers] ([pub_id], [pub_name], [city], [state], [country]) VALUES (CONVERT(TEXT, N'1756'), CONVERT(TEXT, N'Ramona Publishers'), CONVERT(TEXT, N'Dallas'), CONVERT(TEXT, N'TX'), CONVERT(TEXT, N'USA')) INSERT [publishers] ([pub_id], [pub_name], [city], [state], [country]) VALUES (CONVERT(TEXT, N'9901'), CONVERT(TEXT, N'GGG&G'), CONVERT(TEXT, N'M黱chen'), NULL, CONVERT(TEXT, N'Germany')) INSERT [publishers] ([pub_id], [pub_name], [city], [state], [country]) VALUES (CONVERT(TEXT, N'9952'), CONVERT(TEXT, N'Scootney Books'), CONVERT(TEXT, N'New York'), CONVERT(TEXT, N'NY'), CONVERT(TEXT, N'USA')) INSERT [publishers] ([pub_id], [pub_name], [city], [state], [country]) VALUES (CONVERT(TEXT, N'9999'), CONVERT(TEXT, N'Lucerne Publishing'), CONVERT(TEXT, N'Paris'), NULL, CONVERT(TEXT, N'France')) SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [pub_info]( [pub_id] [char](4) NOT NULL, [logo] [image] NULL, [pr_info] [text] NULL ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO INSERT [pub_info] ([pub_id], [logo], [pr_info]) VALUES (CONVERT(TEXT, N'0736'), 0x474946383961D3001F00B30F00000000800000008000808000000080800080008080808080C0C0C0FF000000FF00FFFF000000FFFF00FF00FFFFFFFFFF21F9040100000F002C00000000D3001F004004FFF0C949ABBD38EBCDBBFF60288E245001686792236ABAB03BC5B055B3F843D3B99DE2AB532A36FB15253B19E5A6231A934CA18CB75C1191D69BF62AAD467F5CF036D8243791369F516ADEF9304AF8F30A3563D7E54CFC04BF24377B5D697E6451333D8821757F898D8E8F1F76657877907259755E5493962081798D9F8A846D9B4A929385A7A5458CA0777362ACAF585E6C6A84AD429555BAA9A471A89D8E8BA2C3C7C82DC9C8AECBCECF1EC2D09143A66E80D3D9BC2C41D76AD28FB2CD509ADAA9AAC62594A3DF81C65FE0BDB5B0CDF4E276DEF6DD78EF6B86FA6C82C5A2648A54AB6AAAE4C1027864DE392E3AF4582BF582DFC07D9244ADA2480BD4C6767BFF32AE0BF3EF603B3907490A4427CE21A7330A6D0584B810664D7F383FA25932488FB96D0F37BDF9491448D1A348937A52CAB4A9D3784EF5E58B4A5545D54BC568FABC9A68DD526ED0A6B8AA17331BD91E5AD9D1D390CED23D88F54A3ACB0A955ADDAD9A50B50D87296E3EB9C76A7CDAABC86B2460040DF34D3995515AB9FF125F1AFA0DAB20A0972382CCB9F9E5AEBC368B21EEDB66EDA15F1347BE2DFDEBB44A7B7C6889240D9473EB73322F4E8D8DBBE14D960B6519BCE5724BB95789350E97EA4BF3718CDD64068D751A261D8B1539D6DCDE3C37F68E1FB58E5DCED8A44477537049852EFD253CEE38C973B7E9D97A488C2979FB936FBAFF2CF5CB79E35830400C31860F4A9BE925D4439F81B6A073BEF1575F593C01A25B26127255D45D4A45B65B851A36C56154678568A20E1100003B, CONVERT(TEXT, N'This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts. This is sample text data for New Moon Books, publisher 0736 in the pubs database. New Moon Books is located in Boston, Massachusetts.')) INSERT [pub_info] ([pub_id], [logo], [pr_info]) VALUES (CONVERT(TEXT, N'0877'), 0x4749463839618B002F00B30F00000000800000008000808000000080800080008080808080C0C0C0FF000000FF00FFFF000000FFFF00FF00FFFFFFFFFF21F9040100000F002C000000008B002F004004FFF0C949ABBD38EBCDBBFFA0048464089CE384A62BD596309CC6F4F58A287EBA79ED73B3D26A482C1A8FC8A47249FCCD76BC1F3058D94135579C9345053D835768560CFE6A555D343A1B6D3FC6DC2A377E66DBA5F8DBEBF6EEE1FF2A805B463A47828269871F7A3D7C7C8A3E899093947F666A756567996E6C519E167692646E7D9C98A42295ABAC24A092AD364C737EB15EB61B8E8DB58FB81DB0BE8C6470A0BE58C618BAC365C5C836CEA1BCBBC4C0D0AAD6D14C85CDD86FDDDFAB5F43A580DCB519A25B9BAE989BC3EEA9A7EBD9BF54619A7DF8BBA87475EDA770D6C58B968C59A27402FB99E2378FC7187010D5558948B15CC58B4E20CE9A762E62B558CAB86839FC088D24AB90854662BCD60D653E832BBD7924F49226469327FDEC91C6AD2538972E6FFEE429720D4E63472901251A33A9D28DB47A5A731A7325D56D50B36ADDAA2463D5AF1EAE82F5F84FAA946656AA21AC31D0C4BF85CBA87912D6D194D4B535C5DDDBA93221CB226D022E9437D89C594305FD321C0CB7DFA5C58223036E088F3139B9032563DD0BE66D2ACD8B2BCB9283CEDEE3C6A53EE39BA7579A62C1294917DC473035E0B9E3183F9A3BB6F7ABDE608B018800003B, CONVERT(TEXT, N'This is sample text data for Binnet & Hardley, publisher 0877 in the pubs database. Binnet & Hardley is located in Washington, D.C. This is sample text data for Binnet & Hardley, publisher 0877 in the pubs database. Binnet & Hardley is located in Washington, D.C. This is sample text data for Binnet & Hardley, publisher 0877 in the pubs database. Binnet & Hardley is located in Washington, D.C. This is sample text data for Binnet & Hardley, publisher 0877 in the pubs database. Binnet & Hardley is located in Washington, D.C. This is sample text data for Binnet & Hardley, publisher 0877 in the pubs database. Binnet & Hardley is located in Washington, D.C. ')) INSERT [pub_info] ([pub_id], [logo], [pr_info]) VALUES (CONVERT(TEXT, N'1389'), 0x474946383961C2001D00B30F00000000800000008000808000000080800080008080808080C0C0C0FF000000FF00FFFF000000FFFF00FF00FFFFFFFFFF21F9040100000F002C00000000C2001D004004FFF0C949ABBD38EBCDBBFF60288E1C609E2840AE2C969E6D2CCFB339D90F2CE1F8AEE6BC9FEF26EC01413AA3F2D76BAA96C7A154EA7CC29C449AC7A8ED7A2FDC2FED25149B29E4D479FD55A7CBD931DC35CFA4916171BEFDAABC51546541684C8285847151537F898A588D89806045947491757B6C9A9B9C9D9E9FA0A1A2A3A4A5A6A7A8A95A6A3E64169923B0901A775B7566B25D7F8C888A5150BE7B8F93847D8DC3C07983BEBDC1878BCFAF6F44BBD0AD71C9CBD653BFD5CEC7D1C3DFDB8197D8959CB9AAB8B7EBEEEFF0BA92F1B6B5F4A0F6F776D3FA9EBCFD748C01DCB4AB5DBF7C03CF1454070F61423D491C326BA18E211081250C7AB12867619825F37F2ECE1168AC242B6A274556D121D28FA46C11E78564C5B295308F21BBF5CAD6CCE52C7018813932C4ED5C517346B7C1C2683368349D49A19D0439D31538A452A916135A0B19A59AAB9E6A835A0EABD00E5CD11D1D478C1C59714053AA4C4955AB4B9956879AB497F62E1CBA2373DA25B752239F8787119390AB5806C74E1100003B, CONVERT(TEXT, N'This is sample text data for Algodata Infosystems, publisher 1389 in the pubs database. Algodata Infosystems is located in Berkeley, California. This is sample text data for Algodata Infosystems, publisher 1389 in the pubs database. Algodata Infosystems is located in Berkeley, California. This is sample text data for Algodata Infosystems, publisher 1389 in the pubs database. Algodata Infosystems is located in Berkeley, California. This is sample text data for Algodata Infosystems, publisher 1389 in the pubs database. Algodata Infosystems is located in Berkeley, California. This is sample text data for Algodata Infosystems, publisher 1389 in the pubs database. Algodata Infosystems is located in Berkeley, California. This is sample text data for Algodata Infosystems, publisher 1389 in the pubs database. Algodata Infosystems is located in Berkeley, California. This is sample text data for Algodata Infosystems, publisher 1389 in the pubs database. Algodata Infosystems is located in Berkeley, California. This is sample text data for Algodata Infosystems, publisher 1389 in the pubs database. Algodata Infosystems is located in Berkeley, California. This is sample text data for Algodata Infosystems, publisher 1389 in the pubs database. Algodata Infosystems is located in Berkeley, California. This is sample text data for Algodata Infosystems, publisher 1389 in the pubs database. Algodata Infosystems is located in Berkeley, California.')) INSERT [pub_info] ([pub_id], [logo], [pr_info]) VALUES (CONVERT(TEXT, N'1622'), 0x474946383961F5003400B30F00000000800000008000808000000080800080008080808080C0C0C0FF000000FF00FFFF000000FFFF00FF00FFFFFFFFFF21F9040100000F002C00000000F50034004004FFF0C949ABBD38EBCDBBFF60288E64D90166AA016CEBBEB02ACF746D67E82DC2ACEEFFC0A02997B31027C521EF25698D8E42230E049D3E8AD8537385BC4179DB6B574C26637BE58BF38A1EB393DF2CE55CA52731F77918BE9FAFCD6180817F697F5F6E6C7A836D62876A817A79898A7E31524D708E7299159C9456929F9044777C6575A563A68E827D9D4C8D334BB3B051B6B7B83A8490B91EB4B3BDC1C251A1C24BC3C8C9C8C5C4BFCCCAD0D135ACC36B2E3BBCB655AD1CDB8F6921DEB8D48AA9ADA46046D7E0DC829B9D98E9988878D9AAE5AEF875BC6DEFF7E7A35C9943F18CCA3175C0A4295C48625F3B8610234A0C17D159C289189515CC7531A3C7891BFF9B59FA4812634820F24AAA94882EA50D8BBB3E8813598B8A3D7C0D6F12CB8710E5BA7536D9ED3C458F8B509CF17CE94CEA658F254D944889528306E83C245089629DDA4F8BD65885049ACBB7ADAB2A5364AFDAF344902752409A6085FA39105EBB3C2DAB2E52FA8611B7ACFA060956CB1370598176DB3E74FB956CCCA77207BB6B8CAAAADEA3FFBE01A48CD871D65569C37E25A458C5C9572E57AADE59F7F40A98B456CB36560F730967B3737B74ADBBB7EFDABF830BE70B11F6C8E1C82F31345E33B9F3A5C698FB7D4E9D779083D4B313D7985ABB77E0C9B07F1F0F3EFA71F2E8ED56EB98BEBD7559306FC72C6995EA7499F3B5DDA403FF17538AB6FD20C9FF7D463D531681971888E0104E45069D7C742D58DB7B29B45454811B381420635135B5D838D6E487612F876D98D984B73D2820877DFD871523F5E161D97DD7FCB4C82E31BEC8176856D9D8487D95E1E5D711401AE2448EF11074E47E9D69359382E8A8871391880C28E5861636399950FEFCA55E315D8279255C2C6AA89899B68588961C5B82C366693359F1CA89ACACB959971D76F6E6607B6E410E9D57B1A9196A52BDD56636CC08BA519C5E1EDA8743688906DA9D53F2E367999656A96292E2781397A6264E62A04E25FE49A59354696958409B11F527639DEAC84E7795553A9AACA85C68E8977D2A7919A5A7F83329A46F0D79698BF60D98688CCC118A6C3F8F38E6D89C8C12F635E49145F6132D69DCCE684725FC0546C3B40875D79E70A5867A8274E69E8BAEAC1FEEC02E92EE3AA7ADA015365BEFBE83F2EB6F351100003B, CONVERT(TEXT, N'This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois. This is sample text data for Five Lakes Publishing, publisher 1622 in the pubs database. Five Lakes Publishing is located in Chicago, Illinois.')) INSERT [pub_info] ([pub_id], [logo], [pr_info]) VALUES (CONVERT(TEXT, N'1756'), 0x474946383961E3002500B30F00000000800000008000808000000080800080008080808080C0C0C0FF000000FF00FFFF000000FFFF00FF00FFFFFFFFFF21F9040100000F002C00000000E30025004004FFF0C949ABBD38EBCDBBFF60288E240858E705A4D2EA4E6E0CC7324DD1EB9CDBBAFCE1AC878DE7ABBD84476452C963369F2F288E933A595B404DB27834E67A5FEC37ACEC517D4EB24E5C8D069966361A5E8ED3C3DCA5AA54B9B2AE2D423082817F848286898386858754887B8A8D939094947E918B7D8780959E9D817C18986FA2A6A75A7B22A59B378E1DACAEB18F1940B6A8B8A853727AB5BD4E76676A37BFB9AF2A564D6BC0776E635BCE6DCFD2C3C873716879D4746C6053DA76E0DAB3A133D6D5B290929F9CEAEDEB6FA0C435EF9E97F59896EC28EEFA9DFF69A21C1BB4CA1E3E63084DB42B970FD6407D05C9E59298B0A2C58B18337AA0E88DA3468DC3FFD0692187A7982F5F2271B152162DE54795CEB0F0DAF8EBDA2A932F1FF203B38C484B6ED07674194ACD639679424B4EDB36279B4D3852FE1095266743955138C5209ADA6D5CB26DCDFC644DD351EACF804BCD32421A562DB6965F25AADD11B056BD7BA436C903E82A1D4A3D024769BAE777B0BB7887F51A0E022E9589BCFCE0DD6527597223C4917502ACBCF8D5E6C49F0B6FA60751A7C2748A3EE7DD6B70B5628F9A5873C6DB5936E57EB843C726043B95EBDE394F3584EC7096ED8DA60D86001EBCB9F3E72F99439F0E7DEC7297BA84D9924EFDB11A65566B8EFB510C7CC258DBB7779F7834A9756E6C97D114F95E5429F13CE5F7F9AAF51C996928604710FF544AFDC79717C10CD85157C6EDD75F7EB49C81D45C5EA9674E5BBBA065941BFB45F3D62D5E99E11488516568A15D1292255F635E8045E0520F3E15A0798DB5C5A08105EE52E3884C05255778E6F5C4A287CCB4D84D1D41CE08CD913C56656482EAEDE8E38D71B974553C199EC324573C3669237C585588E52D1ACE049F85521648659556CD83445D27C9F4D68501CE580E31748ED4948C0E3E88959B257C87E39D0A8EC5D812559234996A9EE5B6E864FE31BA5262971DE40FA5B75D9A487A9A79975C6AB5DD06EA6CCA9DB94FA6A1568AD8A4C33DBA6A5995EE5450AC0AA24A9C6DBAE9F6883CB48976D0ABA8D90AA9A88D6246C2ABA3FE8A1B43CA229B9C58AFC11E071AB1D1BE366DB5C9AE85DCA48595466B83AC95C61DA60D1146EEB3BB817ADA40A08CFBDBB2EB9972EB6EDB66D26D71768D5B2B1FEFC65B11AFA5FA96C93AF50AA6AFBEFE263C1DC0FCA2AB8AC210472C310A1100003B, CONVERT(TEXT, N'This is sample text data for Ramona Publishers, publisher 1756 in the pubs database. Ramona Publishers is located in Dallas, Texas.')) INSERT [pub_info] ([pub_id], [logo], [pr_info]) VALUES (CONVERT(TEXT, N'9901'), 0x4749463839615D002200B30F00000000800000008000808000000080800080008080808080C0C0C0FF000000FF00FFFF000000FFFF00FF00FFFFFFFFFF21F9040100000F002C000000005D0022004004FFF0C949ABBD38EBCDFB03DF078C249895A386AA68BB9E6E0ACE623ABD1BC9E9985DFFB89E8E366BED782C5332563ABA4245A6744AAD5AAF4D2276CBED5EA1D026C528B230CD38B2C92721D78CC4772526748F9F611EB28DE7AFE25E818283604A1E8788898A7385838E8F55856F6C2C1D86392F6B9730708D6C5477673758A3865E92627E94754E173697A6A975809368949BB2AE7B9A6865AA734F80A2A17DA576AA5BB667C290CDCE4379CFD2CE9ED3D6A7CCD7DAA4D9C79341C8B9DF5FC052A8DEBA9BB696767B9C7FD5B8BBF23EABB9706BCAE5F05AB7E6C4C7488DDAF7251BC062530EFE93638C5B3580ECD4951312C217C425E73E89D38709D79D810D393BD20A528CE0AA704AA2D4D3082E583C89BD2C2D720753E1C8922697D44CF6AE53BF6D4041750B4AD467C54548932A1D7374A9D3A789004400003B, CONVERT(TEXT, N'This is sample text data for GGG&G, publisher 9901 in the pubs database. GGG&G is located in M黱chen, Germany. ')) INSERT [pub_info] ([pub_id], [logo], [pr_info]) VALUES (CONVERT(TEXT, N'9952'), 0x47494638396107012800B30F00000000800000008000808000000080800080008080808080C0C0C0FF000000FF00FFFF000000FFFF00FF00FFFFFFFFFF21F9040100000F002C00000000070128004004FFF0C949ABBD38EBCDBBFF60288E6469660005AC2C7BB56D05A7D24C4F339E3F765FC716980C3824F28418E4D1A552DA8ACCA5517A7B526F275912690D2A9BD11D14AB8B8257E7E9776BDEE452C2279C47A5CBEDEF2B3C3FBF9FC85981821D7D76868588878A898C8B838F1C8D928E733890829399949B979D9E9FA074A1A3A4A5A6A7458F583E69803F53AF4C62AD5E6DB13B6B3DAEAC6EBA64B365B26BB7ABBEB5C07FB428BCC4C8C1CCC7BBB065637C7A9B7BBE8CDADBDA8B7C31D9E1D88E2FA89E9AE9E49AE7EDA48DA2EEF2F3F4F597AEF6F9FAFBFC805D6CD28C0164C64D18BE3AAD88D87AA5C1DBC07FD59CE54293F0E0882AC39ED9CA2886E3308FB3FF262EBC726D591823204F2E0C09A4A3B32CFEACBC24198D86C48FD3E208D43832E3C0671A2D89737167281AA333219AC048D061499A3C83BEC8090BD84E5A99DE808B730DE9516B727CE85AE7C122BF73EAD29255CB76ADDBB6EC549C8504F7AD5DB37343A98D97576EDDBF7CFB0AEE8457EF5D4E83132BAEB1B8B1E3C749204B9EACB830E5CB984DE1F339A4E1CC88C93CB7D989D72234D1D3A672FEF85055C483C80A06742ADB664F3563119E417D5A8F52DFB1512AEC5D82E9C8662A477FB19A72B6F2E714413F8D0654AA75A8C4C648FDBC346ACDCD5487AFC439BE8BC8E8AA7F6BD77D2B7DF4E6C5882E57DFBDE2F56AEE6D87DFB8BFE06BE7E8F1C6CBCE4D2DC15751803C5956567EFA1D47A041E5F1176183CC1D571D21C2850396565CF5B1D5571D8AC21D08E099A15E85269E87207B1736B31E6FE620324E582116F5215178C86763518A9068DF7FE8C9C6207DCD0104A47B6B717388901EFA27238E3482454E43BB61E8D388F7FD44DD32473E79D43A527633232561E6F86536660256891699D175989A6F1A020A9C75C9D5E68274C619D79D91B5C5189F7906CA67297129D88F9E881A3AA83E8AB623E85E8B0EDAE89C892216E9A584B80318A69C7E3269A7A046FA69A8A4B6094004003B, CONVERT(TEXT, N'This is sample text data for Scootney Books, publisher 9952 in the pubs database. Scootney Books is located in New York City, New York.')) INSERT [pub_info] ([pub_id], [logo], [pr_info]) VALUES (CONVERT(TEXT, N'9999'), 0x474946383961A9002400B30F00000000800000008000808000000080800080008080808080C0C0C0FF000000FF00FFFF000000FFFF00FF00FFFFFFFFFF21F9040100000F002C00000000A90024004004FFF0C949ABBD38EBCDBBFF60F8011A609E67653EA8D48A702CCFF44566689ED67CEFFF23D58E7513B686444A6EA26B126FC8E74AC82421A7ABE5F4594D61B7BBF0D6F562719A68A07ACDC6389925749AFC6EDBEFBCA24D3E96E2FF803D7A1672468131736E494A8B5C848D8633834B916E598B657E4A83905F7D9B7B56986064A09BA2A68D63603A2E717C9487B2B3209CA7AD52594751B4BD80B65D75B799BEC5BFAF7CC6CACB6638852ACC409F901BD33EB6BCCDC1D1CEA9967B23C082C3709662A69FA4A591E7AE84D87A5FA0AB502F43AC5D74EB9367B0624593FA5CB101ED144173E5F4315AE8485B4287FCBE39E446B1624173FEAC59DC2809594623D9C3388A54E4ACD59C642353E2F098E919319530DD61C405C7CBCB9831C5E5A2192C244E983A3FFE1CDA21282CA248ABB18C25336952A389D689E489B0D24483243B66CD8775A315801AA5A60A6B2DAC074E3741D6BBA8902BA687E9A6D1A3B6D6D15C7460C77AA3E3E556D79EBAF4AAAAB2CFCF578671DFDE657598305D51F7BE5E5A25361ED3388EED0A84B2B7535D6072C1D62DB5588BE5CCA5B1BDA377B99E3CBE9EDA31944A951ADF7DB15263A1429B37BB7E429D8EC4D754B87164078F2B87012002003B, CONVERT(TEXT, N'This is sample text data for Lucerne Publishing, publisher 9999 in the pubs database. Lucerne publishing is located in Paris, France. This is sample text data for Lucerne Publishing, publisher 9999 in the pubs database. Lucerne publishing is located in Paris, France. This is sample text data for Lucerne Publishing, publisher 9999 in the pubs database. Lucerne publishing is located in Paris, France. This is sample text data for Lucerne Publishing, publisher 9999 in the pubs database. Lucerne publishing is located in Paris, France.')) SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [discounts]( [discounttype] [varchar](40) NOT NULL, [stor_id] [char](4) NULL, [lowqty] [smallint] NULL, [highqty] [smallint] NULL, [discount] [decimal](4, 2) NOT NULL ) ON [PRIMARY] GO INSERT [discounts] ([discounttype], [stor_id], [lowqty], [highqty], [discount]) VALUES (CONVERT(TEXT, N'Initial Customer'), NULL, NULL, NULL, CAST(10.50 AS Decimal(4, 2))) INSERT [discounts] ([discounttype], [stor_id], [lowqty], [highqty], [discount]) VALUES (CONVERT(TEXT, N'Volume Discount'), NULL, 100, 1000, CAST(6.70 AS Decimal(4, 2))) INSERT [discounts] ([discounttype], [stor_id], [lowqty], [highqty], [discount]) VALUES (CONVERT(TEXT, N'Customer Discount'), CONVERT(TEXT, N'8042'), NULL, NULL, CAST(5.00 AS Decimal(4, 2))) SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [titles]( [title_id] [tid] NOT NULL, [title] [varchar](80) NOT NULL, [type] [char](12) NOT NULL, [pub_id] [char](4) NULL, [price] [money] NULL, [advance] [money] NULL, [royalty] [int] NULL, [ytd_sales] [int] NULL, [notes] [varchar](200) NULL, [pubdate] [datetime] NOT NULL ) ON [PRIMARY] GO INSERT [titles] ([title_id], [title], [type], [pub_id], [price], [advance], [royalty], [ytd_sales], [notes], [pubdate]) VALUES (CONVERT(TEXT, N'BU1032'), CONVERT(TEXT, N'The Busy Executive''s Database Guide'), CONVERT(TEXT, N'business '), CONVERT(TEXT, N'1389'), 19.9900, 5000.0000, 10, 4095, CONVERT(TEXT, N'An overview of available database systems with emphasis on common business applications. Illustrated.'), CAST(0x0000827700000000 AS DateTime)) INSERT [titles] ([title_id], [title], [type], [pub_id], [price], [advance], [royalty], [ytd_sales], [notes], [pubdate]) VALUES (CONVERT(TEXT, N'BU1111'), CONVERT(TEXT, N'Cooking with Computers: Surreptitious Balance Sheets'), CONVERT(TEXT, N'business '), CONVERT(TEXT, N'1389'), 11.9500, 5000.0000, 10, 3876, CONVERT(TEXT, N'Helpful hints on how to use your electronic resources to the best advantage.'), CAST(0x0000827400000000 AS DateTime)) INSERT [titles] ([title_id], [title], [type], [pub_id], [price], [advance], [royalty], [ytd_sales], [notes], [pubdate]) VALUES (CONVERT(TEXT, N'BU2075'), CONVERT(TEXT, N'You Can Combat Computer Stress!'), CONVERT(TEXT, N'business '), CONVERT(TEXT, N'0736'), 2.9900, 10125.0000, 24, 18722, CONVERT(TEXT, N'The latest medical and psychological techniques for living with the electronic office. Easy-to-understand explanations.'), CAST(0x0000828900000000 AS DateTime)) INSERT [titles] ([title_id], [title], [type], [pub_id], [price], [advance], [royalty], [ytd_sales], [notes], [pubdate]) VALUES (CONVERT(TEXT, N'BU7832'), CONVERT(TEXT, N'Straight Talk About Computers'), CONVERT(TEXT, N'business '), CONVERT(TEXT, N'1389'), 19.9900, 5000.0000, 10, 4095, CONVERT(TEXT, N'Annotated analysis of what computers can do for you: a no-hype guide for the critical user.'), CAST(0x0000828100000000 AS DateTime)) INSERT [titles] ([title_id], [title], [type], [pub_id], [price], [advance], [royalty], [ytd_sales], [notes], [pubdate]) VALUES (CONVERT(TEXT, N'MC2222'), CONVERT(TEXT, N'Silicon Valley Gastronomic Treats'), CONVERT(TEXT, N'mod_cook '), CONVERT(TEXT, N'0877'), 19.9900, 0.0000, 12, 2032, CONVERT(TEXT, N'Favorite recipes for quick, easy, and elegant meals.'), CAST(0x0000827400000000 AS DateTime)) INSERT [titles] ([title_id], [title], [type], [pub_id], [price], [advance], [royalty], [ytd_sales], [notes], [pubdate]) VALUES (CONVERT(TEXT, N'MC3021'), CONVERT(TEXT, N'The Gourmet Microwave'), CONVERT(TEXT, N'mod_cook '), CONVERT(TEXT, N'0877'), 2.9900, 15000.0000, 24, 22246, CONVERT(TEXT, N'Traditional French gourmet recipes adapted for modern microwave cooking.'), CAST(0x0000827D00000000 AS DateTime)) INSERT [titles] ([title_id], [title], [type], [pub_id], [price], [advance], [royalty], [ytd_sales], [notes], [pubdate]) VALUES (CONVERT(TEXT, N'MC3026'), CONVERT(TEXT, N'The Psychology of Computer Cooking'), CONVERT(TEXT, N'UNDECIDED '), CONVERT(TEXT, N'0877'), NULL, NULL, NULL, NULL, NULL, CAST(0x00008F860019CA7D AS DateTime)) INSERT [titles] ([title_id], [title], [type], [pub_id], [price], [advance], [royalty], [ytd_sales], [notes], [pubdate]) VALUES (CONVERT(TEXT, N'PC1035'), CONVERT(TEXT, N'But Is It User Friendly?'), CONVERT(TEXT, N'popular_comp'), CONVERT(TEXT, N'1389'), 22.9500, 7000.0000, 16, 8780, CONVERT(TEXT, N'A survey of software for the naive user, focusing on the ''friendliness'' of each.'), CAST(0x0000828900000000 AS DateTime)) INSERT [titles] ([title_id], [title], [type], [pub_id], [price], [advance], [royalty], [ytd_sales], [notes], [pubdate]) VALUES (CONVERT(TEXT, N'PC8888'), CONVERT(TEXT, N'Secrets of Silicon Valley'), CONVERT(TEXT, N'popular_comp'), CONVERT(TEXT, N'1389'), 20.0000, 8000.0000, 10, 4095, CONVERT(TEXT, N'Muckraking reporting on the world''s largest computer hardware and software manufacturers.'), CAST(0x000086BF00000000 AS DateTime)) INSERT [titles] ([title_id], [title], [type], [pub_id], [price], [advance], [royalty], [ytd_sales], [notes], [pubdate]) VALUES (CONVERT(TEXT, N'PC9999'), CONVERT(TEXT, N'Net Etiquette'), CONVERT(TEXT, N'popular_comp'), CONVERT(TEXT, N'1389'), NULL, NULL, NULL, NULL, CONVERT(TEXT, N'A must-read for computer conferencing.'), CAST(0x00008F860019CA82 AS DateTime)) INSERT [titles] ([title_id], [title], [type], [pub_id], [price], [advance], [royalty], [ytd_sales], [notes], [pubdate]) VALUES (CONVERT(TEXT, N'PS1372'), CONVERT(TEXT, N'Computer Phobic AND Non-Phobic Individuals: Behavior Variations'), CONVERT(TEXT, N'psychology '), CONVERT(TEXT, N'0877'), 21.5900, 7000.0000, 10, 375, CONVERT(TEXT, N'A must for the specialist, this book examines the difference between those who hate and fear computers and those who don''t.'), CAST(0x000082FA00000000 AS DateTime)) INSERT [titles] ([title_id], [title], [type], [pub_id], [price], [advance], [royalty], [ytd_sales], [notes], [pubdate]) VALUES (CONVERT(TEXT, N'PS2091'), CONVERT(TEXT, N'Is Anger the Enemy?'), CONVERT(TEXT, N'psychology '), CONVERT(TEXT, N'0736'), 10.9500, 2275.0000, 12, 2045, CONVERT(TEXT, N'Carefully researched study of the effects of strong emotions on the body. Metabolic charts included.'), CAST(0x0000827A00000000 AS DateTime)) INSERT [titles] ([title_id], [title], [type], [pub_id], [price], [advance], [royalty], [ytd_sales], [notes], [pubdate]) VALUES (CONVERT(TEXT, N'PS2106'), CONVERT(TEXT, N'Life Without Fear'), CONVERT(TEXT, N'psychology '), CONVERT(TEXT, N'0736'), 7.0000, 6000.0000, 10, 111, CONVERT(TEXT, N'New exercise, meditation, and nutritional techniques that can reduce the shock of daily interactions. Popular audience. Sample menus included, exercise video available separately.'), CAST(0x000082EA00000000 AS DateTime)) INSERT [titles] ([title_id], [title], [type], [pub_id], [price], [advance], [royalty], [ytd_sales], [notes], [pubdate]) VALUES (CONVERT(TEXT, N'PS3333'), CONVERT(TEXT, N'Prolonged Data Deprivation: Four Case Studies'), CONVERT(TEXT, N'psychology '), CONVERT(TEXT, N'0736'), 19.9900, 2000.0000, 10, 4072, CONVERT(TEXT, N'What happens when the data runs dry? Searching evaluations of information-shortage effects.'), CAST(0x0000827700000000 AS DateTime)) INSERT [titles] ([title_id], [title], [type], [pub_id], [price], [advance], [royalty], [ytd_sales], [notes], [pubdate]) VALUES (CONVERT(TEXT, N'PS7777'), CONVERT(TEXT, N'Emotional Security: A New Algorithm'), CONVERT(TEXT, N'psychology '), CONVERT(TEXT, N'0736'), 7.9900, 4000.0000, 10, 3336, CONVERT(TEXT, N'Protecting yourself and your loved ones from undue emotional stress in the modern world. Use of computer and nutritional aids emphasized.'), CAST(0x0000827700000000 AS DateTime)) INSERT [titles] ([title_id], [title], [type], [pub_id], [price], [advance], [royalty], [ytd_sales], [notes], [pubdate]) VALUES (CONVERT(TEXT, N'TC3218'), CONVERT(TEXT, N'Onions, Leeks, and Garlic: Cooking Secrets of the Mediterranean'), CONVERT(TEXT, N'trad_cook '), CONVERT(TEXT, N'0877'), 20.9500, 7000.0000, 10, 375, CONVERT(TEXT, N'Profusely illustrated in color, this makes a wonderful gift book for a cuisine-oriented friend.'), CAST(0x000082FA00000000 AS DateTime)) INSERT [titles] ([title_id], [title], [type], [pub_id], [price], [advance], [royalty], [ytd_sales], [notes], [pubdate]) VALUES (CONVERT(TEXT, N'TC4203'), CONVERT(TEXT, N'Fifty Years in Buckingham Palace Kitchens'), CONVERT(TEXT, N'trad_cook '), CONVERT(TEXT, N'0877'), 11.9500, 4000.0000, 14, 15096, CONVERT(TEXT, N'More anecdotes from the Queen''s favorite cook describing life among English royalty. Recipes, techniques, tender vignettes.'), CAST(0x0000827700000000 AS DateTime)) INSERT [titles] ([title_id], [title], [type], [pub_id], [price], [advance], [royalty], [ytd_sales], [notes], [pubdate]) VALUES (CONVERT(TEXT, N'TC7777'), CONVERT(TEXT, N'Sushi, Anyone?'), CONVERT(TEXT, N'trad_cook '), CONVERT(TEXT, N'0877'), 14.9900, 8000.0000, 10, 4095, CONVERT(TEXT, N'Detailed instructions on how to make authentic Japanese sushi in your spare time.'), CAST(0x0000827700000000 AS DateTime)) SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [employee]( [emp_id] [empid] NOT NULL, [fname] [varchar](20) NOT NULL, [minit] [char](1) NULL, [lname] [varchar](30) NOT NULL, [job_id] [smallint] NOT NULL, [job_lvl] [tinyint] NULL, [pub_id] [char](4) NOT NULL, [hire_date] [datetime] NOT NULL ) ON [PRIMARY] GO INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'PMA42628M'), CONVERT(TEXT, N'Paolo'), CONVERT(TEXT, N'M'), CONVERT(TEXT, N'Accorti'), 13, 35, CONVERT(TEXT, N'0877'), CAST(0x0000843100000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'PSA89086M'), CONVERT(TEXT, N'Pedro'), CONVERT(TEXT, N'S'), CONVERT(TEXT, N'Afonso'), 14, 89, CONVERT(TEXT, N'1389'), CAST(0x000081CD00000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'VPA30890F'), CONVERT(TEXT, N'Victoria'), CONVERT(TEXT, N'P'), CONVERT(TEXT, N'Ashworth'), 6, 140, CONVERT(TEXT, N'0877'), CAST(0x0000816700000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'H-B39728F'), CONVERT(TEXT, N'Helen'), CONVERT(TEXT, N' '), CONVERT(TEXT, N'Bennett'), 12, 35, CONVERT(TEXT, N'0877'), CAST(0x0000800200000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'L-B31947F'), CONVERT(TEXT, N'Lesley'), CONVERT(TEXT, N' '), CONVERT(TEXT, N'Brown'), 7, 120, CONVERT(TEXT, N'0877'), CAST(0x0000820000000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'F-C16315M'), CONVERT(TEXT, N'Francisco'), CONVERT(TEXT, N' '), CONVERT(TEXT, N'Chang'), 4, 227, CONVERT(TEXT, N'9952'), CAST(0x0000819A00000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'PTC11962M'), CONVERT(TEXT, N'Philip'), CONVERT(TEXT, N'T'), CONVERT(TEXT, N'Cramer'), 2, 215, CONVERT(TEXT, N'9952'), CAST(0x0000803500000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'A-C71970F'), CONVERT(TEXT, N'Aria'), CONVERT(TEXT, N' '), CONVERT(TEXT, N'Cruz'), 10, 87, CONVERT(TEXT, N'1389'), CAST(0x000082FF00000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'AMD15433F'), CONVERT(TEXT, N'Ann'), CONVERT(TEXT, N'M'), CONVERT(TEXT, N'Devon'), 3, 200, CONVERT(TEXT, N'9952'), CAST(0x0000829900000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'ARD36773F'), CONVERT(TEXT, N'Anabela'), CONVERT(TEXT, N'R'), CONVERT(TEXT, N'Domingues'), 8, 100, CONVERT(TEXT, N'0877'), CAST(0x000084CA00000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'PHF38899M'), CONVERT(TEXT, N'Peter'), CONVERT(TEXT, N'H'), CONVERT(TEXT, N'Franken'), 10, 75, CONVERT(TEXT, N'0877'), CAST(0x000083CB00000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'PXH22250M'), CONVERT(TEXT, N'Paul'), CONVERT(TEXT, N'X'), CONVERT(TEXT, N'Henriot'), 5, 159, CONVERT(TEXT, N'0877'), CAST(0x0000859600000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'CFH28514M'), CONVERT(TEXT, N'Carlos'), CONVERT(TEXT, N'F'), CONVERT(TEXT, N'Hernadez'), 5, 211, CONVERT(TEXT, N'9999'), CAST(0x00007F6900000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'PDI47470M'), CONVERT(TEXT, N'Palle'), CONVERT(TEXT, N'D'), CONVERT(TEXT, N'Ibsen'), 7, 195, CONVERT(TEXT, N'0736'), CAST(0x0000853000000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'KJJ92907F'), CONVERT(TEXT, N'Karla'), CONVERT(TEXT, N'J'), CONVERT(TEXT, N'Jablonski'), 9, 170, CONVERT(TEXT, N'9999'), CAST(0x0000866200000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'KFJ64308F'), CONVERT(TEXT, N'Karin'), CONVERT(TEXT, N'F'), CONVERT(TEXT, N'Josephs'), 14, 100, CONVERT(TEXT, N'0736'), CAST(0x0000846400000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'MGK44605M'), CONVERT(TEXT, N'Matti'), CONVERT(TEXT, N'G'), CONVERT(TEXT, N'Karttunen'), 6, 220, CONVERT(TEXT, N'0736'), CAST(0x0000869500000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'POK93028M'), CONVERT(TEXT, N'Pirkko'), CONVERT(TEXT, N'O'), CONVERT(TEXT, N'Koskitalo'), 10, 80, CONVERT(TEXT, N'9999'), CAST(0x000085FC00000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'JYL26161F'), CONVERT(TEXT, N'Janine'), CONVERT(TEXT, N'Y'), CONVERT(TEXT, N'Labrune'), 5, 172, CONVERT(TEXT, N'9901'), CAST(0x0000826600000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'M-L67958F'), CONVERT(TEXT, N'Maria'), CONVERT(TEXT, N' '), CONVERT(TEXT, N'Larsson'), 7, 135, CONVERT(TEXT, N'1389'), CAST(0x0000839800000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'Y-L77953M'), CONVERT(TEXT, N'Yoshi'), CONVERT(TEXT, N' '), CONVERT(TEXT, N'Latimer'), 12, 32, CONVERT(TEXT, N'1389'), CAST(0x00007F9C00000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'LAL21447M'), CONVERT(TEXT, N'Laurence'), CONVERT(TEXT, N'A'), CONVERT(TEXT, N'Lebihan'), 5, 175, CONVERT(TEXT, N'0736'), CAST(0x0000810100000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'ENL44273F'), CONVERT(TEXT, N'Elizabeth'), CONVERT(TEXT, N'N'), CONVERT(TEXT, N'Lincoln'), 14, 35, CONVERT(TEXT, N'0877'), CAST(0x0000813400000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'PCM98509F'), CONVERT(TEXT, N'Patricia'), CONVERT(TEXT, N'C'), CONVERT(TEXT, N'McKenna'), 11, 150, CONVERT(TEXT, N'9999'), CAST(0x00007FCF00000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'R-M53550M'), CONVERT(TEXT, N'Roland'), CONVERT(TEXT, N' '), CONVERT(TEXT, N'Mendel'), 11, 150, CONVERT(TEXT, N'0736'), CAST(0x000082CC00000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'RBM23061F'), CONVERT(TEXT, N'Rita'), CONVERT(TEXT, N'B'), CONVERT(TEXT, N'Muller'), 5, 198, CONVERT(TEXT, N'1622'), CAST(0x000085C900000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'HAN90777M'), CONVERT(TEXT, N'Helvetius'), CONVERT(TEXT, N'A'), CONVERT(TEXT, N'Nagy'), 7, 120, CONVERT(TEXT, N'9999'), CAST(0x000084FD00000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'TPO55093M'), CONVERT(TEXT, N'Timothy'), CONVERT(TEXT, N'P'), CONVERT(TEXT, N'O''Rourke'), 13, 100, CONVERT(TEXT, N'0736'), CAST(0x00007E3700000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'SKO22412M'), CONVERT(TEXT, N'Sven'), CONVERT(TEXT, N'K'), CONVERT(TEXT, N'Ottlieb'), 5, 150, CONVERT(TEXT, N'1389'), CAST(0x0000823300000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'MAP77183M'), CONVERT(TEXT, N'Miguel'), CONVERT(TEXT, N'A'), CONVERT(TEXT, N'Paolino'), 11, 112, CONVERT(TEXT, N'1389'), CAST(0x0000849700000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'PSP68661F'), CONVERT(TEXT, N'Paula'), CONVERT(TEXT, N'S'), CONVERT(TEXT, N'Parente'), 8, 125, CONVERT(TEXT, N'1389'), CAST(0x0000862F00000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'M-P91209M'), CONVERT(TEXT, N'Manuel'), CONVERT(TEXT, N' '), CONVERT(TEXT, N'Pereira'), 8, 101, CONVERT(TEXT, N'9999'), CAST(0x00007F0300000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'MJP25939M'), CONVERT(TEXT, N'Maria'), CONVERT(TEXT, N'J'), CONVERT(TEXT, N'Pontes'), 5, 246, CONVERT(TEXT, N'1756'), CAST(0x00007F3600000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'M-R38834F'), CONVERT(TEXT, N'Martine'), CONVERT(TEXT, N' '), CONVERT(TEXT, N'Rance'), 9, 75, CONVERT(TEXT, N'0877'), CAST(0x0000836500000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'DWR65030M'), CONVERT(TEXT, N'Diego'), CONVERT(TEXT, N'W'), CONVERT(TEXT, N'Roel'), 6, 192, CONVERT(TEXT, N'1389'), CAST(0x0000833200000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'A-R89858F'), CONVERT(TEXT, N'Annette'), CONVERT(TEXT, N' '), CONVERT(TEXT, N'Roulet'), 6, 152, CONVERT(TEXT, N'9999'), CAST(0x0000809B00000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'MMS49649F'), CONVERT(TEXT, N'Mary'), CONVERT(TEXT, N'M'), CONVERT(TEXT, N'Saveley'), 8, 175, CONVERT(TEXT, N'0736'), CAST(0x0000856300000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'CGS88322F'), CONVERT(TEXT, N'Carine'), CONVERT(TEXT, N'G'), CONVERT(TEXT, N'Schmitt'), 13, 64, CONVERT(TEXT, N'1389'), CAST(0x000083FE00000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'MAS70474F'), CONVERT(TEXT, N'Margaret'), CONVERT(TEXT, N'A'), CONVERT(TEXT, N'Smith'), 9, 78, CONVERT(TEXT, N'1389'), CAST(0x00007E9D00000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'HAS54740M'), CONVERT(TEXT, N'Howard'), CONVERT(TEXT, N'A'), CONVERT(TEXT, N'Snyder'), 12, 100, CONVERT(TEXT, N'0736'), CAST(0x00007ED000000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'MFS52347M'), CONVERT(TEXT, N'Martin'), CONVERT(TEXT, N'F'), CONVERT(TEXT, N'Sommer'), 10, 165, CONVERT(TEXT, N'0736'), CAST(0x000080CE00000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'GHT50241M'), CONVERT(TEXT, N'Gary'), CONVERT(TEXT, N'H'), CONVERT(TEXT, N'Thomas'), 9, 170, CONVERT(TEXT, N'0736'), CAST(0x00007E6A00000000 AS DateTime)) INSERT [employee] ([emp_id], [fname], [minit], [lname], [job_id], [job_lvl], [pub_id], [hire_date]) VALUES (CONVERT(TEXT, N'DBT39435M'), CONVERT(TEXT, N'Daniel'), CONVERT(TEXT, N'B'), CONVERT(TEXT, N'Tonini'), 11, 75, CONVERT(TEXT, N'0877'), CAST(0x0000806800000000 AS DateTime)) SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [authors]( [au_id] [id] NOT NULL, [au_lname] [varchar](40) NOT NULL, [au_fname] [varchar](20) NOT NULL, [phone] [char](12) NOT NULL, [address] [varchar](40) NULL, [city] [varchar](20) NULL, [state] [char](2) NULL, [zip] [char](5) NULL, [contract] [bit] NOT NULL ) ON [PRIMARY] GO INSERT [authors] ([au_id], [au_lname], [au_fname], [phone], [address], [city], [state], [zip], [contract]) VALUES (CONVERT(TEXT, N'172-32-1176'), CONVERT(TEXT, N'White'), CONVERT(TEXT, N'Johnson'), CONVERT(TEXT, N'408 496-7223'), CONVERT(TEXT, N'10932 Bigge Rd.'), CONVERT(TEXT, N'Menlo Park'), CONVERT(TEXT, N'CA'), CONVERT(TEXT, N'94025'), 1) INSERT [authors] ([au_id], [au_lname], [au_fname], [phone], [address], [city], [state], [zip], [contract]) VALUES (CONVERT(TEXT, N'213-46-8915'), CONVERT(TEXT, N'Green'), CONVERT(TEXT, N'Marjorie'), CONVERT(TEXT, N'415 986-7020'), CONVERT(TEXT, N'309 63rd St. #411'), CONVERT(TEXT, N'Oakland'), CONVERT(TEXT, N'CA'), CONVERT(TEXT, N'94618'), 1) INSERT [authors] ([au_id], [au_lname], [au_fname], [phone], [address], [city], [state], [zip], [contract]) VALUES (CONVERT(TEXT, N'238-95-7766'), CONVERT(TEXT, N'Carson'), CONVERT(TEXT, N'Cheryl'), CONVERT(TEXT, N'415 548-7723'), CONVERT(TEXT, N'589 Darwin Ln.'), CONVERT(TEXT, N'Berkeley'), CONVERT(TEXT, N'CA'), CONVERT(TEXT, N'94705'), 1) INSERT [authors] ([au_id], [au_lname], [au_fname], [phone], [address], [city], [state], [zip], [contract]) VALUES (CONVERT(TEXT, N'267-41-2394'), CONVERT(TEXT, N'O''Leary'), CONVERT(TEXT, N'Michael'), CONVERT(TEXT, N'408 286-2428'), CONVERT(TEXT, N'22 Cleveland Av. #14'), CONVERT(TEXT, N'San Jose'), CONVERT(TEXT, N'CA'), CONVERT(TEXT, N'95128'), 1) INSERT [authors] ([au_id], [au_lname], [au_fname], [phone], [address], [city], [state], [zip], [contract]) VALUES (CONVERT(TEXT, N'274-80-9391'), CONVERT(TEXT, N'Straight'), CONVERT(TEXT, N'Dean'), CONVERT(TEXT, N'415 834-2919'), CONVERT(TEXT, N'5420 College Av.'), CONVERT(TEXT, N'Oakland'), CONVERT(TEXT, N'CA'), CONVERT(TEXT, N'94609'), 1) INSERT [authors] ([au_id], [au_lname], [au_fname], [phone], [address], [city], [state], [zip], [contract]) VALUES (CONVERT(TEXT, N'341-22-1782'), CONVERT(TEXT, N'Smith'), CONVERT(TEXT, N'Meander'), CONVERT(TEXT, N'913 843-0462'), CONVERT(TEXT, N'10 Mississippi Dr.'), CONVERT(TEXT, N'Lawrence'), CONVERT(TEXT, N'KS'), CONVERT(TEXT, N'66044'), 0) INSERT [authors] ([au_id], [au_lname], [au_fname], [phone], [address], [city], [state], [zip], [contract]) VALUES (CONVERT(TEXT, N'409-56-7008'), CONVERT(TEXT, N'Bennet'), CONVERT(TEXT, N'Abraham'), CONVERT(TEXT, N'415 658-9932'), CONVERT(TEXT, N'6223 Bateman St.'), CONVERT(TEXT, N'Berkeley'), CONVERT(TEXT, N'CA'), CONVERT(TEXT, N'94705'), 1) INSERT [authors] ([au_id], [au_lname], [au_fname], [phone], [address], [city], [state], [zip], [contract]) VALUES (CONVERT(TEXT, N'427-17-2319'), CONVERT(TEXT, N'Dull'), CONVERT(TEXT, N'Ann'), CONVERT(TEXT, N'415 836-7128'), CONVERT(TEXT, N'3410 Blonde St.'), CONVERT(TEXT, N'Palo Alto'), CONVERT(TEXT, N'CA'), CONVERT(TEXT, N'94301'), 1) INSERT [authors] ([au_id], [au_lname], [au_fname], [phone], [address], [city], [state], [zip], [contract]) VALUES (CONVERT(TEXT, N'472-27-2349'), CONVERT(TEXT, N'Gringlesby'), CONVERT(TEXT, N'Burt'), CONVERT(TEXT, N'707 938-6445'), CONVERT(TEXT, N'PO Box 792'), CONVERT(TEXT, N'Covelo'), CONVERT(TEXT, N'CA'), CONVERT(TEXT, N'95428'), 1) INSERT [authors] ([au_id], [au_lname], [au_fname], [phone], [address], [city], [state], [zip], [contract]) VALUES (CONVERT(TEXT, N'486-29-1786'), CONVERT(TEXT, N'Locksley'), CONVERT(TEXT, N'Charlene'), CONVERT(TEXT, N'415 585-4620'), CONVERT(TEXT, N'18 Broadway Av.'), CONVERT(TEXT, N'San Francisco'), CONVERT(TEXT, N'CA'), CONVERT(TEXT, N'94130'), 1) INSERT [authors] ([au_id], [au_lname], [au_fname], [phone], [address], [city], [state], [zip], [contract]) VALUES (CONVERT(TEXT, N'527-72-3246'), CONVERT(TEXT, N'Greene'), CONVERT(TEXT, N'Morningstar'), CONVERT(TEXT, N'615 297-2723'), CONVERT(TEXT, N'22 Graybar House Rd.'), CONVERT(TEXT, N'Nashville'), CONVERT(TEXT, N'TN'), CONVERT(TEXT, N'37215'), 0) INSERT [authors] ([au_id], [au_lname], [au_fname], [phone], [address], [city], [state], [zip], [contract]) VALUES (CONVERT(TEXT, N'648-92-1872'), CONVERT(TEXT, N'Blotchet-Halls'), CONVERT(TEXT, N'Reginald'), CONVERT(TEXT, N'503 745-6402'), CONVERT(TEXT, N'55 Hillsdale Bl.'), CONVERT(TEXT, N'Corvallis'), CONVERT(TEXT, N'OR'), CONVERT(TEXT, N'97330'), 1) INSERT [authors] ([au_id], [au_lname], [au_fname], [phone], [address], [city], [state], [zip], [contract]) VALUES (CONVERT(TEXT, N'672-71-3249'), CONVERT(TEXT, N'Yokomoto'), CONVERT(TEXT, N'Akiko'), CONVERT(TEXT, N'415 935-4228'), CONVERT(TEXT, N'3 Silver Ct.'), CONVERT(TEXT, N'Walnut Creek'), CONVERT(TEXT, N'CA'), CONVERT(TEXT, N'94595'), 1) INSERT [authors] ([au_id], [au_lname], [au_fname], [phone], [address], [city], [state], [zip], [contract]) VALUES (CONVERT(TEXT, N'712-45-1867'), CONVERT(TEXT, N'del Castillo'), CONVERT(TEXT, N'Innes'), CONVERT(TEXT, N'615 996-8275'), CONVERT(TEXT, N'2286 Cram Pl. #86'), CONVERT(TEXT, N'Ann Arbor'), CONVERT(TEXT, N'MI'), CONVERT(TEXT, N'48105'), 1) INSERT [authors] ([au_id], [au_lname], [au_fname], [phone], [address], [city], [state], [zip], [contract]) VALUES (CONVERT(TEXT, N'722-51-5454'), CONVERT(TEXT, N'DeFrance'), CONVERT(TEXT, N'Michel'), CONVERT(TEXT, N'219 547-9982'), CONVERT(TEXT, N'3 Balding Pl.'), CONVERT(TEXT, N'Gary'), CONVERT(TEXT, N'IN'), CONVERT(TEXT, N'46403'), 1) INSERT [authors] ([au_id], [au_lname], [au_fname], [phone], [address], [city], [state], [zip], [contract]) VALUES (CONVERT(TEXT, N'724-08-9931'), CONVERT(TEXT, N'Stringer'), CONVERT(TEXT, N'Dirk'), CONVERT(TEXT, N'415 843-2991'), CONVERT(TEXT, N'5420 Telegraph Av.'), CONVERT(TEXT, N'Oakland'), CONVERT(TEXT, N'CA'), CONVERT(TEXT, N'94609'), 0) INSERT [authors] ([au_id], [au_lname], [au_fname], [phone], [address], [city], [state], [zip], [contract]) VALUES (CONVERT(TEXT, N'724-80-9391'), CONVERT(TEXT, N'MacFeather'), CONVERT(TEXT, N'Stearns'), CONVERT(TEXT, N'415 354-7128'), CONVERT(TEXT, N'44 Upland Hts.'), CONVERT(TEXT, N'Oakland'), CONVERT(TEXT, N'CA'), CONVERT(TEXT, N'94612'), 1) INSERT [authors] ([au_id], [au_lname], [au_fname], [phone], [address], [city], [state], [zip], [contract]) VALUES (CONVERT(TEXT, N'756-30-7391'), CONVERT(TEXT, N'Karsen'), CONVERT(TEXT, N'Livia'), CONVERT(TEXT, N'415 534-9219'), CONVERT(TEXT, N'5720 McAuley St.'), CONVERT(TEXT, N'Oakland'), CONVERT(TEXT, N'CA'), CONVERT(TEXT, N'94609'), 1) INSERT [authors] ([au_id], [au_lname], [au_fname], [phone], [address], [city], [state], [zip], [contract]) VALUES (CONVERT(TEXT, N'807-91-6654'), CONVERT(TEXT, N'Panteley'), CONVERT(TEXT, N'Sylvia'), CONVERT(TEXT, N'301 946-8853'), CONVERT(TEXT, N'1956 Arlington Pl.'), CONVERT(TEXT, N'Rockville'), CONVERT(TEXT, N'MD'), CONVERT(TEXT, N'20853'), 1) INSERT [authors] ([au_id], [au_lname], [au_fname], [phone], [address], [city], [state], [zip], [contract]) VALUES (CONVERT(TEXT, N'846-92-7186'), CONVERT(TEXT, N'Hunter'), CONVERT(TEXT, N'Sheryl'), CONVERT(TEXT, N'415 836-7128'), CONVERT(TEXT, N'3410 Blonde St.'), CONVERT(TEXT, N'Palo Alto'), CONVERT(TEXT, N'CA'), CONVERT(TEXT, N'94301'), 1) INSERT [authors] ([au_id], [au_lname], [au_fname], [phone], [address], [city], [state], [zip], [contract]) VALUES (CONVERT(TEXT, N'893-72-1158'), CONVERT(TEXT, N'McBadden'), CONVERT(TEXT, N'Heather'), CONVERT(TEXT, N'707 448-4982'), CONVERT(TEXT, N'301 Putnam'), CONVERT(TEXT, N'Vacaville'), CONVERT(TEXT, N'CA'), CONVERT(TEXT, N'95688'), 0) INSERT [authors] ([au_id], [au_lname], [au_fname], [phone], [address], [city], [state], [zip], [contract]) VALUES (CONVERT(TEXT, N'899-46-2035'), CONVERT(TEXT, N'Ringer'), CONVERT(TEXT, N'Anne'), CONVERT(TEXT, N'801 826-0752'), CONVERT(TEXT, N'67 Seventh Av.'), CONVERT(TEXT, N'Salt Lake City'), CONVERT(TEXT, N'UT'), CONVERT(TEXT, N'84152'), 1) INSERT [authors] ([au_id], [au_lname], [au_fname], [phone], [address], [city], [state], [zip], [contract]) VALUES (CONVERT(TEXT, N'998-72-3567'), CONVERT(TEXT, N'Ringer'), CONVERT(TEXT, N'Albert'), CONVERT(TEXT, N'801 826-0752'), CONVERT(TEXT, N'67 Seventh Av.'), CONVERT(TEXT, N'Salt Lake City'), CONVERT(TEXT, N'UT'), CONVERT(TEXT, N'84152'), 1) SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [sales]( [stor_id] [char](4) NOT NULL, [ord_num] [varchar](20) NOT NULL, [ord_date] [datetime] NOT NULL, [qty] [smallint] NOT NULL, [payterms] [varchar](12) NOT NULL, [title_id] [tid] NOT NULL ) ON [PRIMARY] GO INSERT [sales] ([stor_id], [ord_num], [ord_date], [qty], [payterms], [title_id]) VALUES (CONVERT(TEXT, N'6380'), CONVERT(TEXT, N'6871'), CAST(0x0000871D00000000 AS DateTime), 5, CONVERT(TEXT, N'Net 60'), CONVERT(TEXT, N'BU1032')) INSERT [sales] ([stor_id], [ord_num], [ord_date], [qty], [payterms], [title_id]) VALUES (CONVERT(TEXT, N'6380'), CONVERT(TEXT, N'722a'), CAST(0x0000871C00000000 AS DateTime), 3, CONVERT(TEXT, N'Net 60'), CONVERT(TEXT, N'PS2091')) INSERT [sales] ([stor_id], [ord_num], [ord_date], [qty], [payterms], [title_id]) VALUES (CONVERT(TEXT, N'7066'), CONVERT(TEXT, N'A2976'), CAST(0x0000853F00000000 AS DateTime), 50, CONVERT(TEXT, N'Net 30'), CONVERT(TEXT, N'PC8888')) INSERT [sales] ([stor_id], [ord_num], [ord_date], [qty], [payterms], [title_id]) VALUES (CONVERT(TEXT, N'7066'), CONVERT(TEXT, N'QA7442.3'), CAST(0x0000871C00000000 AS DateTime), 75, CONVERT(TEXT, N'ON invoice'), CONVERT(TEXT, N'PS2091')) INSERT [sales] ([stor_id], [ord_num], [ord_date], [qty], [payterms], [title_id]) VALUES (CONVERT(TEXT, N'7067'), CONVERT(TEXT, N'D4482'), CAST(0x0000871D00000000 AS DateTime), 10, CONVERT(TEXT, N'Net 60'), CONVERT(TEXT, N'PS2091')) INSERT [sales] ([stor_id], [ord_num], [ord_date], [qty], [payterms], [title_id]) VALUES (CONVERT(TEXT, N'7067'), CONVERT(TEXT, N'P2121'), CAST(0x000083E800000000 AS DateTime), 40, CONVERT(TEXT, N'Net 30'), CONVERT(TEXT, N'TC3218')) INSERT [sales] ([stor_id], [ord_num], [ord_date], [qty], [payterms], [title_id]) VALUES (CONVERT(TEXT, N'7067'), CONVERT(TEXT, N'P2121'), CAST(0x000083E800000000 AS DateTime), 20, CONVERT(TEXT, N'Net 30'), CONVERT(TEXT, N'TC4203')) INSERT [sales] ([stor_id], [ord_num], [ord_date], [qty], [payterms], [title_id]) VALUES (CONVERT(TEXT, N'7067'), CONVERT(TEXT, N'P2121'), CAST(0x000083E800000000 AS DateTime), 20, CONVERT(TEXT, N'Net 30'), CONVERT(TEXT, N'TC7777')) INSERT [sales] ([stor_id], [ord_num], [ord_date], [qty], [payterms], [title_id]) VALUES (CONVERT(TEXT, N'7131'), CONVERT(TEXT, N'N914008'), CAST(0x0000871D00000000 AS DateTime), 20, CONVERT(TEXT, N'Net 30'), CONVERT(TEXT, N'PS2091')) INSERT [sales] ([stor_id], [ord_num], [ord_date], [qty], [payterms], [title_id]) VALUES (CONVERT(TEXT, N'7131'), CONVERT(TEXT, N'N914014'), CAST(0x0000871D00000000 AS DateTime), 25, CONVERT(TEXT, N'Net 30'), CONVERT(TEXT, N'MC3021')) INSERT [sales] ([stor_id], [ord_num], [ord_date], [qty], [payterms], [title_id]) VALUES (CONVERT(TEXT, N'7131'), CONVERT(TEXT, N'P3087a'), CAST(0x0000854400000000 AS DateTime), 20, CONVERT(TEXT, N'Net 60'), CONVERT(TEXT, N'PS1372')) INSERT [sales] ([stor_id], [ord_num], [ord_date], [qty], [payterms], [title_id]) VALUES (CONVERT(TEXT, N'7131'), CONVERT(TEXT, N'P3087a'), CAST(0x0000854400000000 AS DateTime), 25, CONVERT(TEXT, N'Net 60'), CONVERT(TEXT, N'PS2106')) INSERT [sales] ([stor_id], [ord_num], [ord_date], [qty], [payterms], [title_id]) VALUES (CONVERT(TEXT, N'7131'), CONVERT(TEXT, N'P3087a'), CAST(0x0000854400000000 AS DateTime), 15, CONVERT(TEXT, N'Net 60'), CONVERT(TEXT, N'PS3333')) INSERT [sales] ([stor_id], [ord_num], [ord_date], [qty], [payterms], [title_id]) VALUES (CONVERT(TEXT, N'7131'), CONVERT(TEXT, N'P3087a'), CAST(0x0000854400000000 AS DateTime), 25, CONVERT(TEXT, N'Net 60'), CONVERT(TEXT, N'PS7777')) INSERT [sales] ([stor_id], [ord_num], [ord_date], [qty], [payterms], [title_id]) VALUES (CONVERT(TEXT, N'7896'), CONVERT(TEXT, N'QQ2299'), CAST(0x000085DC00000000 AS DateTime), 15, CONVERT(TEXT, N'Net 60'), CONVERT(TEXT, N'BU7832')) INSERT [sales] ([stor_id], [ord_num], [ord_date], [qty], [payterms], [title_id]) VALUES (CONVERT(TEXT, N'7896'), CONVERT(TEXT, N'TQ456'), CAST(0x0000860900000000 AS DateTime), 10, CONVERT(TEXT, N'Net 60'), CONVERT(TEXT, N'MC2222')) INSERT [sales] ([stor_id], [ord_num], [ord_date], [qty], [payterms], [title_id]) VALUES (CONVERT(TEXT, N'7896'), CONVERT(TEXT, N'X999'), CAST(0x000084E300000000 AS DateTime), 35, CONVERT(TEXT, N'ON invoice'), CONVERT(TEXT, N'BU2075')) INSERT [sales] ([stor_id], [ord_num], [ord_date], [qty], [payterms], [title_id]) VALUES (CONVERT(TEXT, N'8042'), CONVERT(TEXT, N'423LL922'), CAST(0x0000871D00000000 AS DateTime), 15, CONVERT(TEXT, N'ON invoice'), CONVERT(TEXT, N'MC3021')) INSERT [sales] ([stor_id], [ord_num], [ord_date], [qty], [payterms], [title_id]) VALUES (CONVERT(TEXT, N'8042'), CONVERT(TEXT, N'423LL930'), CAST(0x0000871D00000000 AS DateTime), 10, CONVERT(TEXT, N'ON invoice'), CONVERT(TEXT, N'BU1032')) INSERT [sales] ([stor_id], [ord_num], [ord_date], [qty], [payterms], [title_id]) VALUES (CONVERT(TEXT, N'8042'), CONVERT(TEXT, N'P723'), CAST(0x000084F500000000 AS DateTime), 25, CONVERT(TEXT, N'Net 30'), CONVERT(TEXT, N'BU1111')) INSERT [sales] ([stor_id], [ord_num], [ord_date], [qty], [payterms], [title_id]) VALUES (CONVERT(TEXT, N'8042'), CONVERT(TEXT, N'QA879.1'), CAST(0x0000853D00000000 AS DateTime), 30, CONVERT(TEXT, N'Net 30'), CONVERT(TEXT, N'PC1035')) SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [roysched]( [title_id] [tid] NOT NULL, [lorange] [int] NULL, [hirange] [int] NULL, [royalty] [int] NULL ) ON [PRIMARY] GO INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU1032'), 0, 5000, 10) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU1032'), 5001, 50000, 12) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PC1035'), 0, 2000, 10) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PC1035'), 2001, 3000, 12) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PC1035'), 3001, 4000, 14) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PC1035'), 4001, 10000, 16) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PC1035'), 10001, 50000, 18) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU2075'), 0, 1000, 10) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU2075'), 1001, 3000, 12) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU2075'), 3001, 5000, 14) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU2075'), 5001, 7000, 16) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU2075'), 7001, 10000, 18) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU2075'), 10001, 12000, 20) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU2075'), 12001, 14000, 22) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU2075'), 14001, 50000, 24) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PS2091'), 0, 1000, 10) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PS2091'), 1001, 5000, 12) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PS2091'), 5001, 10000, 14) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PS2091'), 10001, 50000, 16) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PS2106'), 0, 2000, 10) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PS2106'), 2001, 5000, 12) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PS2106'), 5001, 10000, 14) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PS2106'), 10001, 50000, 16) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'MC3021'), 0, 1000, 10) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'MC3021'), 1001, 2000, 12) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'MC3021'), 2001, 4000, 14) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'MC3021'), 4001, 6000, 16) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'MC3021'), 6001, 8000, 18) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'MC3021'), 8001, 10000, 20) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'MC3021'), 10001, 12000, 22) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'MC3021'), 12001, 50000, 24) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'TC3218'), 0, 2000, 10) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'TC3218'), 2001, 4000, 12) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'TC3218'), 4001, 6000, 14) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'TC3218'), 6001, 8000, 16) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'TC3218'), 8001, 10000, 18) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'TC3218'), 10001, 12000, 20) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'TC3218'), 12001, 14000, 22) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'TC3218'), 14001, 50000, 24) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PC8888'), 0, 5000, 10) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PC8888'), 5001, 10000, 12) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PC8888'), 10001, 15000, 14) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PC8888'), 15001, 50000, 16) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PS7777'), 0, 5000, 10) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PS7777'), 5001, 50000, 12) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PS3333'), 0, 5000, 10) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PS3333'), 5001, 10000, 12) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PS3333'), 10001, 15000, 14) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PS3333'), 15001, 50000, 16) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU1111'), 0, 4000, 10) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU1111'), 4001, 8000, 12) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU1111'), 8001, 10000, 14) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU1111'), 12001, 16000, 16) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU1111'), 16001, 20000, 18) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU1111'), 20001, 24000, 20) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU1111'), 24001, 28000, 22) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU1111'), 28001, 50000, 24) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'MC2222'), 0, 2000, 10) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'MC2222'), 2001, 4000, 12) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'MC2222'), 4001, 8000, 14) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'MC2222'), 8001, 12000, 16) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'MC2222'), 12001, 20000, 18) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'MC2222'), 20001, 50000, 20) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'TC7777'), 0, 5000, 10) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'TC7777'), 5001, 15000, 12) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'TC7777'), 15001, 50000, 14) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'TC4203'), 0, 2000, 10) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'TC4203'), 2001, 8000, 12) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'TC4203'), 8001, 16000, 14) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'TC4203'), 16001, 24000, 16) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'TC4203'), 24001, 32000, 18) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'TC4203'), 32001, 40000, 20) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'TC4203'), 40001, 50000, 22) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU7832'), 0, 5000, 10) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU7832'), 5001, 10000, 12) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU7832'), 10001, 15000, 14) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU7832'), 15001, 20000, 16) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU7832'), 20001, 25000, 18) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU7832'), 25001, 30000, 20) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU7832'), 30001, 35000, 22) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'BU7832'), 35001, 50000, 24) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PS1372'), 0, 10000, 10) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PS1372'), 10001, 20000, 12) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PS1372'), 20001, 30000, 14) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PS1372'), 30001, 40000, 16) INSERT [roysched] ([title_id], [lorange], [hirange], [royalty]) VALUES (CONVERT(TEXT, N'PS1372'), 40001, 50000, 18) SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER OFF GO CREATE PROCEDURE [reptq3] @lolimit money, @hilimit money, @type char(12) AS select pub_id, type, title_id, price from titles where price >@lolimit AND price <@hilimit AND type = @type OR type LIKE '%cook%' order by pub_id, type COMPUTE count(title_id) BY pub_id, type GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [titleauthor]( [au_id] [id] NOT NULL, [title_id] [tid] NOT NULL, [au_ord] [tinyint] NULL, [royaltyper] [int] NULL ) ON [PRIMARY] GO INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'172-32-1176'), CONVERT(TEXT, N'PS3333'), 1, 100) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'213-46-8915'), CONVERT(TEXT, N'BU1032'), 2, 40) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'213-46-8915'), CONVERT(TEXT, N'BU2075'), 1, 100) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'238-95-7766'), CONVERT(TEXT, N'PC1035'), 1, 100) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'267-41-2394'), CONVERT(TEXT, N'BU1111'), 2, 40) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'267-41-2394'), CONVERT(TEXT, N'TC7777'), 2, 30) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'274-80-9391'), CONVERT(TEXT, N'BU7832'), 1, 100) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'409-56-7008'), CONVERT(TEXT, N'BU1032'), 1, 60) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'427-17-2319'), CONVERT(TEXT, N'PC8888'), 1, 50) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'472-27-2349'), CONVERT(TEXT, N'TC7777'), 3, 30) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'486-29-1786'), CONVERT(TEXT, N'PC9999'), 1, 100) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'486-29-1786'), CONVERT(TEXT, N'PS7777'), 1, 100) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'648-92-1872'), CONVERT(TEXT, N'TC4203'), 1, 100) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'672-71-3249'), CONVERT(TEXT, N'TC7777'), 1, 40) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'712-45-1867'), CONVERT(TEXT, N'MC2222'), 1, 100) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'722-51-5454'), CONVERT(TEXT, N'MC3021'), 1, 75) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'724-80-9391'), CONVERT(TEXT, N'BU1111'), 1, 60) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'724-80-9391'), CONVERT(TEXT, N'PS1372'), 2, 25) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'756-30-7391'), CONVERT(TEXT, N'PS1372'), 1, 75) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'807-91-6654'), CONVERT(TEXT, N'TC3218'), 1, 100) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'846-92-7186'), CONVERT(TEXT, N'PC8888'), 2, 50) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'899-46-2035'), CONVERT(TEXT, N'MC3021'), 2, 25) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'899-46-2035'), CONVERT(TEXT, N'PS2091'), 2, 50) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'998-72-3567'), CONVERT(TEXT, N'PS2091'), 1, 50) INSERT [titleauthor] ([au_id], [title_id], [au_ord], [royaltyper]) VALUES (CONVERT(TEXT, N'998-72-3567'), CONVERT(TEXT, N'PS2106'), 1, 100) SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER OFF GO CREATE PROCEDURE [reptq1] AS select pub_id, title_id, price, pubdate from titles where price is NOT NULL order by pub_id COMPUTE avg(price) BY pub_id COMPUTE avg(price) GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER OFF GO CREATE VIEW [titleview] AS select title, au_ord, au_lname, price, ytd_sales, pub_id from authors, titles, titleauthor where authors.au_id = titleauthor.au_id AND titles.title_id = titleauthor.title_id GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER OFF GO CREATE PROCEDURE [byroyalty] @percentage int AS select au_id from titleauthor where titleauthor.royaltyper = @percentage GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER OFF GO CREATE PROCEDURE [reptq2] AS select type, pub_id, titles.title_id, au_ord, Name = substring (au_lname, 1,15), ytd_sales from titles, authors, titleauthor where titles.title_id = titleauthor.title_id AND authors.au_id = titleauthor.au_id AND pub_id is NOT NULL order by pub_id, type COMPUTE avg(ytd_sales) BY pub_id, type COMPUTE avg(ytd_sales) BY pub_id GO