-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscript.sql
5884 lines (5879 loc) · 1.34 MB
/
script.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
USE [BOOK_STORE]
GO
/****** Object: Table [dbo].[tblOrder] Script Date: 3/19/2024 12:40:09 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tblOrder](
[OrderID] [int] NOT NULL,
[OrderDate] [date] NOT NULL,
[UserID] [int] NOT NULL,
CONSTRAINT [PK_tblOrder1] PRIMARY KEY CLUSTERED
(
[OrderID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[tblBook] Script Date: 3/19/2024 12:40:09 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tblBook](
[BookID] [int] NOT NULL,
[Title] [text] NOT NULL,
[Author] [text] NOT NULL,
[Price] [float] NOT NULL,
[Quantity] [int] NOT NULL,
CONSTRAINT [PK_tblBook] PRIMARY KEY CLUSTERED
(
[BookID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
/****** Object: Table [dbo].[tblOrderDetail] Script Date: 3/19/2024 12:40:09 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tblOrderDetail](
[OrderdetailID] [int] NOT NULL,
[OrderID] [int] NOT NULL,
[BookID] [int] NOT NULL,
[Quantity] [tinyint] NOT NULL,
CONSTRAINT [PK_tblOrderDetail] PRIMARY KEY CLUSTERED
(
[OrderdetailID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: View [dbo].[MONTHLY_SALES_REPORT] Script Date: 3/19/2024 12:40:09 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[MONTHLY_SALES_REPORT]
AS
SELECT MONTH(OrderDate) 'Month',SUM(od.Quantity*b.Price) 'Amount'
FROM tblOrder o
INNER JOIN tblOrderDetail od ON o.OrderID = od.OrderID
INNER JOIN tblBook b ON od.BookID = b.BookID
GROUP BY MONTH(OrderDate)
GO
/****** Object: Table [dbo].[tblOrderStatus] Script Date: 3/19/2024 12:40:09 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tblOrderStatus](
[StatusID] [int] NOT NULL,
[OrderID] [int] NOT NULL,
[StatusDescription] [nvarchar](20) NOT NULL,
CONSTRAINT [PK_tblOrderStatus_1] PRIMARY KEY CLUSTERED
(
[StatusID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: View [dbo].[v_soldBook] Script Date: 3/19/2024 12:40:09 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[v_soldBook] AS(
SELECT b.BookID, CONVERT(VARCHAR(MAX), b.Title) AS bookTitle, SUM(od.Quantity) AS soldBook FROM tblOrderDetail od
INNER JOIN tblBook b ON od.BookID = b.BookID
INNER JOIN tblOrder o ON od.OrderID = o.OrderID
INNER JOIN tblOrderStatus os ON o.OrderID = os.OrderID
WHERE os.StatusDescription = 'Delivered'
GROUP BY b.BookID, CONVERT(VARCHAR(MAX), b.Title))
GO
/****** Object: Table [dbo].[tblUser] Script Date: 3/19/2024 12:40:09 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tblUser](
[UserID] [int] NOT NULL,
[FullName] [nvarchar](50) NOT NULL,
[BirthYear] [smallint] NOT NULL,
[Country] [nvarchar](50) NOT NULL,
[Username] [nvarchar](50) NOT NULL,
[Gmail] [varchar](100) NOT NULL,
[Password] [nvarchar](50) NOT NULL,
[Phone] [varchar](15) NOT NULL,
[Address] [nvarchar](100) NOT NULL,
CONSTRAINT [PK_tblUser] PRIMARY KEY CLUSTERED
(
[UserID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: View [dbo].[Buyer] Script Date: 3/19/2024 12:40:09 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[Buyer] AS
(SELECT u.UserID, u.FullName, SUM(od.Quantity) AS boughtBook FROM tblOrderDetail od
INNER JOIN tblOrder o ON od.OrderID = o.OrderID
INNER JOIN tblOrderStatus os ON o.OrderID = os.OrderID
INNER JOIN tblUser u ON o.UserID = u.UserID
WHERE os.StatusDescription = 'Delivered'
GROUP BY u.UserID, u.FullName);
GO
/****** Object: Table [dbo].[tblBookCategoryMapping] Script Date: 3/19/2024 12:40:09 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tblBookCategoryMapping](
[CMappingID] [int] NOT NULL,
[BookID] [int] NOT NULL,
[CategoryID] [int] NOT NULL,
CONSTRAINT [PK_tblBookCategoryMapping] PRIMARY KEY CLUSTERED
(
[CMappingID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[tblCategory] Script Date: 3/19/2024 12:40:09 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tblCategory](
[CategoryID] [int] NOT NULL,
[Category] [nvarchar](100) NOT NULL,
CONSTRAINT [PK_tblCategory] PRIMARY KEY CLUSTERED
(
[CategoryID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[tblPayment] Script Date: 3/19/2024 12:40:09 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tblPayment](
[PaymentID] [int] NOT NULL,
[OrderID] [int] NOT NULL,
[PaymentMethod] [nvarchar](20) NOT NULL,
[PaymentStatus] [nvarchar](20) NOT NULL,
CONSTRAINT [PK_tblPayment] PRIMARY KEY CLUSTERED
(
[PaymentID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[tblRestock] Script Date: 3/19/2024 12:40:09 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tblRestock](
[RestockID] [int] NOT NULL,
[BookID] [int] NOT NULL,
[Quantity] [int] NOT NULL,
[UpdatedDate] [date] NOT NULL,
CONSTRAINT [PK_tblRestock1] PRIMARY KEY CLUSTERED
(
[RestockID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (0, N'Goat Brothers', N'By Colton, Larry', 8.79, 22)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (1, N'The Missing Person', N'By Grumbach, Doris', 4.99, 20)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (2, N'Don''t Eat Your Heart Out Cookbook', N'By Piscatella, Joseph C.', 4.99, 20)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (3, N'When Your Corporate Umbrella Begins to Leak: A Handbook for White Collar Re-Employment', N'By Davis, Paul D.', 4.99, 20)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (4, N'Amy Spangler''s Breastfeeding : A Parent''s Guide', N'By Spangler, Amy', 5.32, 20)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (5, N'The Foundation of Leadership: Enduring Principles to Govern Our Lives', N'By Short, Bo', 6.06, 19)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (6, N'Chicken Soup for the Soul: 101 Stories to Open the Heart and Rekindle the Spirit', N'By Canfield, Jack (COM) and Hansen, Mark Victor (COM)', 4.99, 19)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (7, N'Journey Through Heartsongs', N'By Stepanek, Mattie J. T.', 19.96, 19)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (8, N'In Search of Melancholy Baby', N'By Aksyonov, Vassily, Heim, Michael Henry, and Bouis, Antonina W.', 4.99, 19)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (9, N'Christmas Cookies', N'By Eakin, Katherine M. and Deaman, Joane (EDT)', 12.98, 19)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (10, N'The Dieter''s Guide to Weight Loss During Sex', N'By Smith, Richard', 4.99, 19)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (11, N'Germs : Biological Weapons and America''s Secret War', N'By Miller, Judith, Engelberg, Stephen, and Broad, William J.', 4.99, 19)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (12, N'The Genesis of Ethics', N'By Visotzky, Burton L.', 4.99, 19)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (13, N'The Good Book: Reading the Bible with Mind and Heart', N'By Gomes, Peter J.', 5.29, 19)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (14, N'All over but the Shoutin''', N'By Bragg, Rick', 4.89, 19)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (15, N'Oilers and Sweepers and Other Stories', N'By Dennison, George', 5, 19)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (16, N'Prince William', N'By Garner, Valerie', 4.99, 19)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (17, N'The Emperor''s New Mind', N'By Penrose, Roger', 4.99, 19)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (18, N'Touching Fire: Erotic Writings by Women', N'By Thornton, Louise, Sturtevant, Jan, and Sumrall, Amber Coverdale (EDT)', 5.29, 19)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (19, N'Hill Rat: Blowing the Lid Off Congress', N'By Jackley, John L.', 4.99, 19)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (20, N'The Great ABC Treasure Hunt: A Hidden Picture Alphabet Book (Time-Life Early Learning Program)', N'By Time-Life for Children (Firm) (COR), Singer, Muff, and Hoggan, Pat (ILT)', 5.29, 19)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (21, N'Personality of the Cat', N'By Aymar, Brandt (EDT)', 5.41, 19)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (22, N'Murdering Mr. Monti: A Merry Little Tale of Sex and Violence', N'By Viorst, Judith', 5.29, 19)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (23, N'In Re Alger Hiss: Petition for a Writ of Error Coram Nobis', N'By Edith Tiger', 10.99, 19)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (24, N'Black Holes and Baby Universes and Other Essays', N'By Hawking, Stephen W.', 5.29, 19)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (25, N'Relativity: The Special and the General Theory', N'By Albert Einstein', 8.79, 19)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (26, N'Betrayal : How the Clinton Administration Undermined American Security', N'By Gertz, Bill', 4.99, 19)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (27, N'Shadow Song', N'By Kay, Terry', 4.99, 19)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (28, N'Undercurrents: A Therapist''s Reckoning With Her Own Depression', N'By Manning, Martha', 5.29, 18)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (29, N'The Road Less Traveled and Beyond: Spiritual Growth in an Age of Anxiety', N'By Peck, M. Scott', 4.99, 18)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (30, N'The Kiss: A Memoir', N'By Harrison, Kathryn', 5.29, 18)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (31, N'Codebreakers'' Victory: How the Allied Cryptogaphers Won World War II', N'By Haufler, Hervie', 5.29, 18)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (32, N'A Manual for Writers of Term Papers, Theses, and Dissertations, Fifth Edition', N'By Turabian, Kate L.', 4.99, 18)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (33, N'The Price of Loyalty: George W. Bush, the White House, and the Education of Paul O''Neill', N'By Suskind, Ron', 8.79, 18)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (34, N'Best New American Voices 2003', N'By Kulka, John (EDT), Danford, Natalie (EDT), and Oates, Joyce Carol (EDT)', 5.29, 18)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (35, N'Escape from the CIA: How the CIA Won and Lost the Most Important KGB Spy Ever to Defect to the U.S.', N'By Kessler, Ronald', 5.29, 18)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (36, N'Meditations: On the Monk Who Dwells in Daily Life', N'By Moore, Thomas', 4.99, 18)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (37, N'Links Lore', N'By Stevens, Peter F.', 5.29, 18)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (38, N'Jackie by Josie: A Novel', N'By Preston, Caroline', 4.99, 18)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (39, N'Joshua and the City', N'By Girzone, Joseph F.', 5.29, 17)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (40, N'The Book of Courtly Love: The Passionate Code of the Troubadours', N'By Hopkins, Andrea', 5.29, 17)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (41, N'How Good Do We Have to Be? A New Understanding of Guilt and Forgiveness', N'By Kushner, Harold S.', 4.99, 17)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (42, N'Eat More, Weigh Less: Dr. Dean Ornish''s Life Choice Program for Losing Weight Safely While Eating Abundantly', N'By Ornish, Dean and Brown, Shirley Elizabeth (EDT)', 5.29, 17)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (43, N'Majorca: Culture and Life', N'By Konemann Inc. (EDT)', 8.83, 17)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (44, N'Written by Herself: Autobiographies of American Women: An Anthology', N'By Conway, Jill Ker (EDT)', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (45, N'The Universe of Galaxies', N'By Hodge, Paul', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (46, N'Ice Bound: A Doctor''s Incredible Battle For Survival at the South Pole', N'By Nielsen, Jerri and Vollers, Maryanne', 4.89, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (47, N'Healing Benefits of Garlic', N'By Heinerman, John', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (48, N'Me and Ted Against the World : The Unauthorized Story of the Founding of CNN', N'By Schonfeld, Reese', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (49, N'Magnet Therapy: The Pain Cure Alternative', N'By Lawrence, Ronald Melvin, Plowden, Judith, and Rosch, Paul', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (50, N'Controlling Cholesterol: Dr. Kenneth H. Cooper''s Preventative Medicine Program', N'By Cooper, Kenneth H.', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (51, N'George Meany And His Times: A Biography', N'By Robinson, Archie', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (52, N'American Dreams: Lost & Found', N'By Terkel, Studs', 10.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (53, N'Sharing the Pie : A Citizen''s Guide to Wealth and Power', N'By Brodner, Steve (ILT) and Brouwer, Steve', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (54, N'Love, Love, and Love', N'By Bernhard, Sandra', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (55, N'Conflicting Accounts: The Creation and Crash of the Saatchi and Saatchi Advertising Empire', N'By Goldman, Kevin', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (56, N'What Went Wrong at Enron: Everyone''s Guide to the Largest Bankruptcy in U.S. History', N'By Fusaro, Peter C. and Miller, Ross M.', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (57, N'The Addictive Organization: Why We Overwork, Cover Up, Pick Up the Pieces, Please the Boss, and Perpetuate S', N'By Schaef, Anne Wilson and Fassel, Diane', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (58, N'From the Silent Earth: A Report on the Greek Bronze Age', N'By Joseph Alsop', 6.22, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (59, N'Panic Disorder and Its Treatment (Medical Psychiatry Series)', N'By Pollack, Mark H. (EDT) and Rosenbaum, J. F. (EDT)', 5.41, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (60, N'Henry VIII (English Monarchs Series)', N'By Scarisbrick, J. J.', 5.47, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (61, N'The Moral Intelligence of Children', N'By Coles, Robert', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (62, N'Concordance to the New English Bible, New Testament,', N'By Elder, E', 10.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (63, N'Life at the Edge: Readings from Scientific American Magazine', N'By Gould, James L. and Gould, Carol Grant (EDT)', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (64, N'Cook Healthy: Cook Quick', N'By Wesler, Cathy A.', 5.18, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (65, N'Images Of War: The Artist''s Vision of World War II', N'By McCormick, Ken', 10.02, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (66, N'Becoming Soul Mates: Cultivating Spiritual Intimacy in the Early Years of Marriage', N'By Parrott, Les', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (67, N'Care of the Soul : A Guide for Cultivating Depth and Sacredness in Everyday Life', N'By Moore, Thomas', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (68, N'Victims of Progress', N'By Bodley, John H.', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (69, N'Inside the Tornado: Marketing Strategies from Silicon Valley''s Cutting Edge', N'By Moore, Geoffrey A.', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (70, N'Sunset at Rosalie: A Novel', N'By McLaughlin, Ann L.', 5, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (71, N'The Girlfriends'' Guide to Surviving the First Year of Motherhood, Packaging May Vary', N'By Iovine, Vicki', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (72, N'Sherlock Holmes and the Red Demon by John H. Watson, M.D.', N'By Watson, John H. and Millett, Larry (EDT)', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (73, N'New Lands, New Men', N'By Goetzmann, William H.', 10.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (74, N'Reinventing Government: How the Entrepreneurial Spirit is Transforming the Public Sector (Plume)', N'By Osborne, David and Gaebler, Ted', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (75, N'Proverbs For The People', N'By Price-Thompson, Tracy (EDT) and Stovall, Taressa (EDT)', 5.88, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (76, N'Great American Countryside', N'By Landi, Val', 10.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (77, N'Rob Whitlock: A Pioneer Boy in Old Ohio', N'By Jackson, Kathryn', 12.51, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (78, N'British Hospitals (Britain in Pictures)', N'By A. G. L. Ives', 18, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (79, N'An essay on morals', N'By Wylie, Philip', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (80, N'Kid, You Sing My Songs of Love, and Loss, and Hope', N'By Wyse, Lois and Rogers, Lilla (ILT)', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (81, N'Re-Inventing the Corporation: Transforming Your Job and Your Company for the New Information Society', N'By Naisbitt, John and Aburdene, Patricia', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (82, N'A Sister Is Forever: A Blue Mountain Arts Collection for One of the Most Beautiful People You''ll Ever Know', N'By Morris, Gary (EDT) and Blue Mountain Arts Collection (COR)', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (83, N'The Practical Stylist', N'By Baker, Sheridan Warner', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (84, N'The Periodic Kingdom: A Journey Into The Land Of The Chemical Elements (Science Masters Series)', N'By Atkins, P. W.', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (85, N'Titanic', N'By Kirkland, Douglas, Marsh, Ed W., and Kirkland, Douglas (PHT)', 8.79, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (86, N'A Woman of Egypt', N'By Sadat, Jehan', 8.79, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (87, N'Civilization III: Instruction Manual', N'By Meier, Sid', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (88, N'Alcatraz ''46;: The anatomy of a classic prison tragedy,', N'By Don DeNevi, Philip Bergen', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (89, N'Elvis in the Morning', N'By Buckley, William F.', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (90, N'Fat Free, Flavor Full: Dr. Gabe Mirkin''s Guide to Losing Weight and Living Longer', N'By Mirkin, Gabe and Rich, Diana', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (91, N'White Gold Wielder - Book Three of The Second Chronicles of Thomas Covenant', N'By Donaldson, Stephen R.', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (92, N'From Image to Likeness: A Jungian Path in the Gospel Journey', N'By Grant, W. Harold, Thompson, Magdala, and Clarke, Thomas E.', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (93, N'ON THE WING: The Life of Birds: From Feathers to Flight', N'By Brooks, Bruce', 19.25, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (94, N'Bringing Down the House: The Inside Story of Six M.I.T. Students Who Took Vegas for Millions', N'By Mezrich, Ben', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (95, N'Future Space: Beyond Earth', N'By Quigley, Sebastian (ILT) and Jefferis, David', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (96, N'The young Jefferson, 1743-1789,', N'By Bowers, Claude Gernade', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (97, N'Mayo Clinic On Hearing: Strategies for Managing Hearing Loss, Dizziness and Other Ear Problems ("MAYO CLINIC ON" SERIES)', N'By Olsen, Wayne, Ph.D. (EDT)', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (98, N'Trust Me, Mom-Everyone Else Is Going!: The New Rules for Mothering Adolescent Girls', N'By Cohen-Sandler, Roni, Ph.D.', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (99, N'I Hate School: How to Hang in and When to Drop Out', N'By Wirths, Claudine G. and Bowman-Kruhm, Mary', 5.29, 16)
GO
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (100, N'The Quotable Ronald Reagan', N'By Reagan, Ronald and Hannaford, Peter', 5.44, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (101, N'Rooster crows for day,', N'By Burman, Ben Lucien', 21.95, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (102, N'Leadership Is an Art', N'By De Pree, Max', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (103, N'What''s Going On?: Personal Essays', N'By McCall, Nathan', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (104, N'Dark Fields of the Republic: Poems 1991-1995', N'By Rich, Adrienne Cecile', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (105, N'Creating an Inclusive School', N'By Villa, Richard A. (EDT) and Thousand, Jacqueline S. (EDT)', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (106, N'Edit Yourself : A manual for everyone who works with words', N'By Ross-Larson, Bruce', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (107, N'Standing for Something: 10 Neglected Virtues That Will Heal Our Hearts and Homes', N'By Hinckley, Gordon B. and Wallace, Mike (FRW)', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (108, N'North Carolina Ghosts and Legends', N'By Roberts, Nancy', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (109, N'Balkan Odyssey a personal account of the international peace efforts following the breakup of the former Yugoslavia', N'By Owen, David', 5.12, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (110, N'Straight Talk about Death for Teenagers: How to Cope with Losing Someone You Love', N'By Grollman, Earl A.', 8.79, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (111, N'Understanding Thomas Jefferson', N'By Halliday, E. M.', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (112, N'Hey Mom! I''m Hungry!: Great-Tasting, Low-Fat, Easy Recipes to Feed Your Family', N'By Powter, Susan', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (113, N'Changes in the Land: Indians, Colonists and the Ecology of New England', N'By Cronon, William', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (114, N'An East Wind Coming', N'By Arthur Byron Cover', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (115, N'Going the Other Way: Lessons from a Life In and Out of Major League Baseball', N'By Bean, Billy and Bull, Chris', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (116, N'Consider Your Options: Get the Most from Your Equity Compensation', N'By Thomas, Kaye A.', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (117, N'Molecular Cell Biology', N'By Lodish, Harvey F., Baltimore, David, and Berk, Arnold (CON)', 11.44, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (118, N'Majendie''s Cat', N'By Fowlkes, Frank V.', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (119, N'First Things First', N'By Covey, Stephen R., Merrill, A. Roger, and Merrill, Rebecca R.', 5.58, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (120, N'Best Friends: The True Story of the World''s Most Beloved Animal Sanctuary', N'By Glen, Samantha and Moore, Mary Tyler (INT)', 4.89, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (121, N'Prudens futuri: The US Army War College, 1901-1967', N'By Pappas, George S.', 6.24, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (122, N'Joshua: A Parable for Today', N'By Girzone, Joseph F.', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (123, N'Things Not Seen and Other Stories', N'By Williams, Lynna', 5.29, 721)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (124, N'Putting the One Minute Manager to Work: How to Turn the 3 Secrets into Skills', N'By Blanchard, Kenneth H. and Lorber, Robert', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (125, N'The Spiritual Life of Children', N'By Coles, Robert', 4.99, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (126, N'Constancia and Other Stories for Virgins', N'By Fuentes, Carlos and Christensen, Thomas (TRN)', 5.29, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (127, N'May I Have This Dance?', N'By Rupp, Joyce and Veeder, Judith (ILT)', 4.89, 16)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (128, N'Meditations from Conversations with God: An Uncommon Dialogue, Book 1 (Conversations with God Series)', N'By Walsch, Neale Donald', 5.29, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (129, N'Washington bowed', N'By McKeldin, Theodore R', 16.16, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (130, N'Chagall', N'By Compton, Susan P.', 10.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (131, N'Ride a Pale Horse', N'By MacInnes, Helen', 5.29, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (132, N'Listening to Prozac: A Psychiatrist Explores Antidepressant Drugs and the Remaking of the Self', N'By Kramer, Peter D.', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (133, N'The Big Garage on Clear Shot: Growing Up, Growing Old, and Going Fishing at the End of the Road', N'By Bodett, Tom', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (134, N'Life Stories', N'By Newbold, Heather (EDT)', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (135, N'Houghton Mifflin Invitations to Literature: Student Anthology Level 1.3 Share 1997 (Invitations to Lit 1997)', N'By Hm (COR)', 5.94, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (136, N'Grow Greener: Ten Steps to a Richer Life', N'By Hoxton, Rob', 5.29, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (137, N'Frames of Reference: Looking at American Art, 1900-1950: Works from the Whitney Museum of American Art', N'By Fraser, Kennedy, Whitney Museum of American Art (COR), Weinberg, Adam D., and Venn, Beth', 6.42, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (138, N'Remembering Main Street: An American Album', N'By Ross, Pat', 10.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (139, N'Spicy', N'By Hayes, Alan', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (140, N'Pope John Paul II', N'By Szulc, Tad', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (141, N'The Virgin Homeowner: The Essential Guide to Owning, Maintaining, and Surviving Your Home', N'By Papolos, Janice', 5.29, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (142, N'Fight Fat After Forty: The Revolutionary Three-Pronged Approach That Will Break Your Stress-Fat Cycle and Make You Healthy, Fit, and Trim for Life', N'By Peeke, Pamela', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (143, N'Leadership Presence', N'By Halpern, Belle Linda and Lubar, Kathy', 5.29, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (144, N'The Golden Christmas Tree', N'By Weisgard, Leonard (ILT) and Wahl, Jan', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (145, N'The Age of Uncertainty', N'By Galbraith, John Kenneth', 10.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (146, N'Global Literacies: Lessons on Business Leadership and National Cultures', N'By Rosen, Robert (EDT), Digh, Patricia, Singer, Marshall, and Phillips, Carl', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (147, N'Results: The Key to Continuous School Improvement', N'By Schmoker, Michael J.', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (148, N'Trailside Guide: Fly Fishing', N'By Hildebrand, Ron (ILT) and Merwin, John', 19.25, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (149, N'I Wish I Had a Red Dress', N'By Cleage, Pearl', 5.29, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (150, N'The economics of macro issues', N'By Miller, Roger LeRoy', 5.29, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (151, N'Family Guide to Natural Medicine', N'By Reader''s Digest Association', 8.79, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (152, N'Killer Diller', N'By Edgerton, Clyde', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (153, N'Herbal Medicine', N'By Buchman, Dian Dincin', 5.29, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (154, N'The Visitation', N'By Reidy, Sue', 5.29, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (155, N'Big Kitchen Instruction Book', N'By Zemke, Deborah (ILT) and Brown, Rosemary Carleton', 7.29, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (156, N'One World, One Heart', N'By Susan Polis Schutz', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (157, N'Reengineering the Corporation', N'By Hammer, Michael and Champy, James', 5.29, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (158, N'What My Parents Did Right', N'By Gaither, Gloria (COM)', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (159, N'The Man''s Health Sourcebook', N'By Dashe, Alfred M.', 5.64, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (160, N'High Tech Illustration', N'By Martin, Judy', 6.12, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (161, N'Chinese Roundabout: Essays in History and Culture', N'By Spence, Jonathan D.', 5.35, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (162, N'Behind closed doors;: The secret history of the cold war,', N'By Zacharias, Ellis M', 5.67, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (163, N'Production & Operations Management : Quality, Performance, and Value', N'By Evans, James R.', 10.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (164, N'Shackleton''s Boat Journey', N'By Worsley, Frank Arthur', 5.29, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (165, N'An Atlas of the Difficult World: Poems 1988-1991', N'By Rich, Adrienne Cecile', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (166, N'Are You Considering Psychoanalysis?', N'By Horney, Karen (EDT)', 5.29, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (167, N'The Splendid Century: French Art: 1600-1715 - exhibition at The National Gallery of Art, The Toledo Museum of Art, The Metropolitan Museum of Art, 1960-1961', N'By Text by Theodore Rousseau', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (168, N'Blue Guide: Oxford and Cambridge (Blue Guides (Only Op))', N'By Geoffrey Tyack', 5.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (169, N'Daughter of Regals & Other Tales', N'By Donaldson, Stephen R.', 5.29, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (170, N'Get Thee To a Punnery', N'By Lederer, Richard', 5.29, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (171, N'Too Young to Retire: 101 Ways To Start The Rest of Your Life', N'By Stone, Howard and Stone, Marika', 5.29, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (172, N'Zillionaire''s Daughter', N'By Sorel, Edward', 5.29, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (173, N'Macintosh programming primer', N'By Mark, David, Reed, Cartwright', 6.42, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (174, N'Ireland''s Women: Writings Past and Present', N'By Kennelly, Brendan, Donovan, Katie, and Jeffares, A. Norman', 5.3, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (175, N'Currier and Ives Four Seasons Cookbook', N'By NATAHANIEL CURRIER and JAMES MERRITT', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (176, N'Testimonies: A Novel', N'By O''Brian, Patrick', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (177, N'Career Guide: Opportunities and Resources for You (The Ebony Success Library, V. 3)', N'By Ebony', 8.79, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (178, N'The downy waterfowl of North America', N'By Colleen Helgeson Nelson', 8.51, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (179, N'Cooking for Jack', N'By Nicholson, Jack, Baratta, Tommy, Baratta, Marylou, and Nicholson, Jack (INT)', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (180, N'How to Become a Successful Consultant in Your Own Field', N'By Prima', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (181, N'Sophie Du Pont: A Young Lady in America : Sketches, Diaries, and Letters, 1823-1833', N'By Low, Betty-Bright and Hinsley, Jacqueline', 8.79, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (182, N'MBO for nonprofit organizations', N'By McConkey, Dale D', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (183, N'The Wrinkle Cure: Unlock the Power of Cosmeceuticals for Supple, Youthful Skin', N'By Perricone, Nicholas', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (184, N'Step-By-Step Container Gardening: 50 Recipes for Creating Glorious Pots and Boxes', N'By Donaldson, Stephanie', 5.29, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (185, N'The New Grove Modern Masters (Composer Biography Series)', N'By Lampert, Vera, Kemp, Ian, White, Eric White', 5.29, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (186, N'City of Gold', N'By Deighton, Len', 5.47, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (187, N'Mother of Pearl', N'By Haynes, Melinda', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (188, N'Icons', N'By Winthrop, Caroline', 5.58, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (189, N'The View from a Monastery', N'By Tvedten, Benet', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (190, N'Who Needs God', N'By Kushner, Harold S.', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (191, N'Loving Thoughts', N'By Rice, Helen Steiner', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (192, N'Kirkpatrick Mission (Diplomacy Wo Apology Ame at the United Nations 1981 to 85', N'By Gerson, Allan', 5.29, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (193, N'Bringing up Kids American Style', N'By Novello, Joseph', 12.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (194, N'Maryland Today', N'By Bard, Harry', 21.83, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (195, N'Deployment: Hiding Behind Power Struggles as a Character Defense (Psychoanalytic Therapy Series)', N'By Moses-Hrushovski, Rena', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (196, N'The Final Days', N'By Bernstein, Carl and Woodward, Bob', 10.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (197, N'James Herriot: The Life of a Country Vet', N'By Lord, Graham', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (198, N'The Lisle Letters: An Abridgement', N'By Byrne, Muriel St. Clare (EDT)', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (199, N'The White Man''s Burden: Historical Origins of Racism in the United States (Galaxy Books)', N'By Jordan, Winthrop D.', 5.29, 15)
GO
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (200, N'WORDS FOR EVERYDAY ANIMALS (Words for Everyday)', N'By Davenport, Zoe', 17.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (201, N'A birthday gift for Mommi', N'By Beers, V. Gilbert', 5.86, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (202, N'Vision: A Personal Call to Create a New World', N'By Carey, Ken', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (203, N'Three Essays: On Liberty, Representative Government, The Subjection of Women', N'By Mill, John Stuart and Stillinger, Jack (EDT)', 6.66, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (204, N'The Mozart Companion a Symposium by leading Mozart Scholar', N'By Landon, Harold R.', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (205, N'Joshua and the Children: A Parable', N'By Joseph F. Girzone', 5.29, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (206, N'Red Square', N'By Smith, Martin Cruz', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (207, N'Buffalo Gordon', N'By Lewis, J. P. Sinclair', 23.11, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (208, N'Certain Poor Shepherds: A Christmas Tale', N'By Thomas, Elizabeth Marshall and Davidson, Andrew (ILT)', 5.29, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (209, N'The New Building Your Mate''s Self-Esteem', N'By Rainey, Dennis and Rainey, Barbara', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (210, N'Rogue Regimes: Terrorism and Proliferation', N'By Tanter, Raymond', 58.61, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (211, N'The Abuse Excuse: And Other Cop-Outs, Sob Stories, and Evasions of Responsibility', N'By Dershowitz, Alan M.', 5.47, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (212, N'Houghton Mifflin Invitations to Literature: Student Anthology Level 1.4 Surprise 1997 (Invitations to Lit 1997)', N'By Hm (COR)', 6.12, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (213, N'The Pharaohs of Ancient Egypt (Megascope Series)', N'By Derouin, Claire', 4.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (214, N'1776-1976: Zweihundert Jahre deutsch-amerikanische Beziehungen = two hundred years of German-American relations : eine Dokumentation (German Edition)', N'By Piltz, Thomas', 10.99, 15)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (215, N'Dannybird', N'By Philip Macht', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (216, N'Technical Manual and Dictionary of Classical Ballet (Dover Books on Dance)', N'By Grant, Gail', 7.71, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (217, N'Life and Death in Shanghai', N'By Cheng, Nien', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (218, N'100 Favorite Roses (100 Favorite Series)', N'By Dunn, Teri', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (219, N'All Around The Town', N'By Clark, Mary Higgins', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (220, N'New World Visions of Household Gods and Sacred Places: American Art and the Metropolitan Museum of Art 1650-1914', N'By Scully, Vincent', 13.12, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (221, N'New Stories from the South 2001: The Year''s Best', N'By Ravenel, Shannon', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (222, N'Orchids as House Plants', N'By Northen, Rebecca Tyson', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (223, N'The History of the American Sailing Navy: The Ships and Their Development', N'By Chapelle, Howard Irving', 29.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (224, N'The Experience of Opera (Norton Library, N706)', N'By Lang, Paul Henry', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (225, N'The pattern of Soviet power', N'By Snow, Edgar', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (226, N'The World of Science Fiction, 1926-1976: The History of a Subculture', N'By Del Rey, Lester', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (227, N'Passionate Paradox; the Life of Marie Stopes', N'By briant, keith', 5.47, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (228, N'The Law', N'By Vailland, Roger', 12.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (229, N'Horsewatching: Why does a horse whinny and everything else you ever wanted to know', N'By Morris, Desmond', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (230, N'Linda Mccartney''s Home Cooking', N'By McCartney, Linda', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (231, N'Herblock''s special for today', N'By Block, Herbert', 11.48, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (232, N'Beginners Cookbook (Home Library)', N'By', 6.16, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (233, N'Ghost Light: A Memoir', N'By Rich, Frank', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (234, N'The Sands of Time: A Hermux Tantamoq Adventure', N'By Hoeye, Michael', 5.29, 649)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (235, N'Murder at the Pentagon', N'By Truman, Margaret', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (236, N'The Goomba''s Book of Love', N'By Schirripa, Steve and Fleming, Charles', 5.09, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (237, N'Stanley Elkin''s Greatest Hits', N'By Elkin, Stanley', 21.95, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (238, N'Griffin & Sabine: An Extraordinary Correspondence', N'By Bantock, Nick', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (239, N'Wine in Everyday Cooking: "Cooking with Wine for Family and Friends"', N'By Ballard, Patricia', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (240, N'Leading Lady: The World and Theatre of Katharine Cornell', N'By Mosel, Ted', 10.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (241, N'Invasion of the Mind Swappers From Asteroid 6!', N'By Helquist, Brett (ILT) and Howe, James', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (242, N'The march of democracy', N'By Adams, James Truslow', 5.54, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (243, N'Einstein''s Monsters', N'By Amis, Martin', 15.4, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (244, N'How To Live Through A Bad Day: 7 Powerful Insights From Christ''s Words on the Cross', N'By Hayford, Jack W.', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (245, N'The Ideals Country Kitchen Cookbook', N'By Kronschnab', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (246, N'The Passenger from Scotland Yard: A Victorian Detective Novel', N'By Wood, H. Freeman', 12.51, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (247, N'The 27-Ingredient Chili Con Carne Murders', N'By Pickard, Nancy', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (248, N'Looking for Alaska', N'By Jenkins, Peter', 5.94, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (249, N'Give Us This Day', N'By Tudor, Tasha (ILT)', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (250, N'Crossing Over Jordan', N'By Brown, Linda Beatrice', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (251, N'Sculpture & carving at Washington Cathedral', N'By Feller, Richard T', 14.62, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (252, N'When Birds Could Talk And Bats Could Sing', N'By Moser, Barry (ILT) and Hamilton, Virginia', 5.41, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (253, N'Line of Fire: Continuing the Saga of the Corps', N'By Griffin, W. E. B.', 8.79, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (254, N'Sun and Shadow', N'By Green, Julie', 5, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (255, N'Heartstring Quilts: Quilts Made Easy (Quilting)', N'By', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (256, N'Crooked Hearts', N'By Boswell, Robert', 5, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (257, N'The Lower Depths and Other Plays', N'By Gorky, Maksim', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (258, N'Chanticleer;: The poems of Terry Wise', N'By Terry Wise', 8.16, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (259, N'You Know You''re A Republican/Democrat If...', N'By Benjamin, Frank', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (260, N'From Mama''s Kitchen', N'By Smith, Catharine P. (EDT)', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (261, N'The Silence Now: New and Uncollected Early Poems', N'By Sarton, May', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (262, N'Especially for Mothers', N'By Rice, Helen Steiner', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (263, N'The Big Bite Book of Pizzas', N'By Jansz, Meg', 5.51, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (264, N'Stories In An Almost Classical Mode', N'By Brodkey, Harold.', 10.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (265, N'Princess Margaret', N'By Hope, Alice', 8.16, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (266, N'M''sieu Robin : Lyrics and legends of Jean Baptiste and his friends', N'By Wallace Bruce Amsbary', 7.49, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (267, N'With or Without and Other Stories', N'By Dickinson, Charles', 6.97, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (268, N'Parenting Isn''t for Cowards: Dealing Confidently With the Frustrations of Child-Rearing', N'By Dobson, James C.', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (269, N'Frisky Business: All About Being Owned by a Cat', N'By Brethwaite, Chris, Ahern, Lee Ann, and Bridgeman, Bill et al', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (270, N'The Seacoast of Bohemia', N'By Freeling, Nicolas', 13.12, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (271, N'The Arrival Kit: A Guide for your Journey in the Kingdom of God', N'By Ralph W. Neighbour Jr.', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (272, N'The Catholic Girl''s Guide to Sex', N'By Anderson, Melinda, Murray, Kathleen, and Arnold, Alli (ILT)', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (273, N'In the Shadow of the Ark', N'By Provoost, Anne and Nieuwenhuizen, John', 5.47, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (274, N'The Supernaturalist', N'By Colfer, Eoin', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (275, N'U and I: A True Story', N'By Baker, Nicholson', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (276, N'Love Invents Us', N'By Amy Bloom', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (277, N'Zero Db and Other Stories', N'By Bell, Madison Smartt', 5, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (278, N'The Heart of a Leader', N'By Blanchard, Kenneth H.', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (279, N'Hefner', N'By Brady, Frank', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (280, N'The Secrets of Savvy Networking: How to Make the Best Connections for Business and Personal Success', N'By RoAne, Susan', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (281, N'A Shaker''s Dozen', N'By Rocheleau, Paul (ILT) and Homsen, Kathleen', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (282, N'Personal History', N'By Graham, Katharine', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (283, N'Friendship with God: an uncommon dialogue', N'By Walsch, Neale Donald', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (284, N'Extravagant Grace', N'By Clairmont, Patsy, Walsh, Sheila, Johnson, Barbara, Clairmont, Patsy (EDT), Mullins, Traci (EDT), Swindoll, Luci, Meberg, Marilyn, Wells, Thelma, and Women Of Faith (COR)', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (285, N'13 Things You Gotta Know to Make it as a Christian (Powerlink Student Devotional)', N'By McDowell, Josh and Hostetler, Bob', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (286, N'Dave Barry''s Guide to Marriage and/or Sex', N'By Barry, Dave', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (287, N'The Festival Cookbook: Four Seasons of Favorites', N'By Good, Phyllis Pellman', 5.94, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (288, N'Shella', N'By Vachss, Andrew H.', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (289, N'What To Cook When You Think There''s Nothing in the House To Eat: More Than 175 Easy Recipes And Meal Ideas', N'By Schwartz, Arthur', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (290, N'Little Vegetarian Feasts: Main-Dish Grains', N'By Shulman, Martha Rose and Drechsler, Debbie (ILT)', 10.98, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (291, N'Stir-Fry (Sunset Creative Cooking Library)', N'By Sunset Books', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (292, N'Collected Stories of Reynolds Price', N'By Price, Reynolds', 6.24, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (293, N'DIY Girl', N'By Gesue, Monica (ILT) and Bonnell, Jennifer', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (294, N'The Divine Pastime: Theatre Essays', N'By Clurman, Harold', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (295, N'What''s Bred in the Bone (Cornish Trilogy)', N'By Davies, Robertson', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (296, N'Mastering the Zone: The Next Step in Achieving SuperHealth and Permanent Fat Loss', N'By Sears, Barry and Goodbody, Mary', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (297, N'North Carolina Lighthouses', N'By David Stick', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (298, N'Analyzing Performance Problems, or You Really Oughta Wanna', N'By Robert Frank Mager, Peter Pipe', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (299, N'Reviving Ophelia: Saving the Selves of Adolescent Girls (Ballantine Reader''s Circle)', N'By Pipher, Mary Bray', 4.99, 14)
GO
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (300, N'Napoleon and Hitler', N'By Seward, Desmond', 5.36, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (301, N'Encounter and Encouragement: A Bicentennial Review of German-American Relations', N'By Joachim Hans Schwelien', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (302, N'Too Busy to Clean', N'By Barrett, Patti', 5.72, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (303, N'Keeping Your Kids Catholic: It May Seem Impossible but It Can Be Done', N'By Bert Ghezzi', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (304, N'Vines (Burpee American Gardening Series)', N'By Bales, Suzanne Frutig', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (305, N'Roads to Antietam', N'By Schildt, John W.', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (306, N'Nursery Rhymes: A Collection from Mother Goose (Illustrated Library for Child.)', N'By Hale, Glorya (EDT), Anderson, Anne, Lee, Ella Doldar, Anderson, Anne (ILT), and Lee, Ella Doldar (ILT)', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (307, N'The Art of Cooking with Herbs & Spices', N'By Miloradovich, Milo', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (308, N'The uncommon cookbook', N'By Mellinkoff, Ruth', 24.26, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (309, N'List Your Self: Listmaking as the Way to Self-Discovery', N'By Segalove, Ilene and Velick, Paul Bob', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (310, N'The Insider''s Guide to Getting Published: Why They Always Reject Your Manuscript and What You Can Do About It', N'By Boswell, John', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (311, N'Walking the Cat by Tommy " Tip" Paine: Gordon Liddy Is My Muse II', N'By Batchelor, John Calvin', 5.8, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (312, N'The Theory of the Modern Stage: An Introduction to Modern Theatre and Drama', N'By Eric Bentley', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (313, N'Mistler''s Exit', N'By Begley, Louis', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (314, N'Small Patchwork & Quilting', N'By Linsley, Leslie, Aron, Jon (PHT), and Savonen, Robby (ILT)', 10.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (315, N'A Portfolio of Outdoor Furnishing Ideas (Portfolio Ofideas)', N'By Cowles Creative Publishing, Cy Decosse Inc', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (316, N'Cooking With Helen McCully Beside You', N'By McCully, Helen', 8.79, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (317, N'Christopher Idone''s Glorious American Food', N'By Idone, Christopher', 10.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (318, N'Family portrait', N'By Bowen, Catherine Drinker', 6.72, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (319, N'The Whole Shebang: A State-of-the-Universe(s) Report', N'By Ferris, Timothy', 8.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (320, N'Eating Well for Optimum Health: The Essential Guide to Bringing Health and Pleasure Back to Eating', N'By Weil, Andrew', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (321, N'Teverton Hall', N'By Gillespie, Jane', 4.99, 439)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (322, N'Inference of guilt', N'By Greene, Harris', 36.2, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (323, N'Lines in the Sand: Desert Storm and the Remaking of the Arab World', N'By Amos, Deborah', 5.51, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (324, N'The Witling', N'By Vinge, Vernor', 20.85, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (325, N'The Courage to Be Rich: Creating a Life of Material and Spiritual Abundance', N'By Orman, Suze', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (326, N'Our Nature', N'By Gilbert, Bill', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (327, N'The Gift of Sex: A Guide to Sexual Fulfillment', N'By Penner, Clifford and Penner, Joyce', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (328, N'Basic Principles of Classical Ballet', N'By Vaganova, A. Ia.', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (329, N'The Biblical Road to Blessing', N'By Hinn, Benny', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (330, N'Remembered Laughter: The Life of Noel Coward. Orig Pub in Great Britain Under Title: Life of Noel Coward', N'By Lesley, Cole', 10.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (331, N'Peanuts: A Golden Celebration: The Art and the Story of the World''s Best-Loved Comic Strip', N'By Schulz, Charles M. and Larkin, David (EDT)', 10.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (332, N'Other loyalties;: A politics of personality', N'By Brower, Brock', 8, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (333, N'The Language of Life: A Festival of Poets', N'By Moyers, Bill D., Grubin, David, and Haba, James', 10.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (334, N'The Shutterfly Guide to Great Digital Photos (CLS.EDUCATION)', N'By Johnson, Dave and Housenbold, Jeffrey', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (335, N'Henry VIII and His Court', N'By Williams, Neville', 8.79, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (336, N'The New Grove Mozart', N'By Sadie, Stanley', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (337, N'Short bike rides in New Jersey', N'By Santelli, Robert', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (338, N'Pledged: The Secret Life of Sororities', N'By Robbins, Alexandra', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (339, N'Smoky Mountains Trout Fishing Guide', N'By Kirk, Don', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (340, N'A Thing or Two About Soccer', N'By Buckley, James, Teitelbaum, Michael, and Wolff, Rick (FRW)', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (341, N'Guide to Cults and New Religions', N'By Enroth, Ronald', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (342, N'Preparatory Piano Literature: Origianl Keyboard Classics With Optional Teacher Duets, Elementary (Developing Artist)', N'By Faber, Randall (COP), Faber, Nancy (COM), and Hansen, Jeanne (CON)', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (343, N'Winter Has Lasted Too Long', N'By Kavanaugh, James J', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (344, N'Iron Man: The Cal Ripken, Jr. Story', N'By Rosenfeld, Harvey', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (345, N'The Only Way I Know', N'By Ripken, Cal, Jr. and Bryan, Mike', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (346, N'Knots on a Counting Rope (Reading Rainbow Books)', N'By Rand, Ted (ILT), Martin, Bill, and Archambault, John', 4.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (347, N'New Ways With Fresh Flowers: 50 Inspirational Projects for Contemporary Floral Designers', N'By Barnett, Fiona', 10.99, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (348, N'QPB Encyclopedia of Word & Phrase Origins', N'By Hendrickson, Robert', 8.14, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (349, N'German A La Cartoon', N'By Small, Albert H. (EDT)', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (350, N'The Complete Idiot''s Guide to Getting Published', N'By Bykofsky, Sheree and Sander, Jennifer Basye', 5.29, 14)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (351, N'Death Gets a Time-Out (Mommy-Track Mysteries)', N'By Waldman, Ayelet', 4.99, 13)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (352, N'The Reader''s Companion to South Africa', N'By Ryan, Alan (EDT)', 4.99, 13)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (353, N'Dealing With People You Can''t Stand', N'By Brinkman, Rick and Kirschner, Rick', 4.99, 13)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (354, N'Operation Redemption: A Vision of Hope in an Age of Turmoil', N'By Trevelyan, George', 5.29, 13)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (355, N'Let Freedom Ring: Winning the War of Liberty over Liberalism', N'By Hannity, Sean', 4.99, 13)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (356, N'Hamlet (Oxford World''s Classics)', N'By Shakespeare, William and Hibbard, G. R. (EDT)', 5.29, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (357, N'The Playboy of the Western World and Other Plays: Riders to the Sea; The Shadow of the Glen; The Tinker''s Wedding; The Well of the Saints; The Playboy ... of the Sorrows (Oxford World''s Classics)', N'By Synge, John Millington and Saddlemyer, Ann (EDT)', 4.99, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (358, N'Grandparenthood', N'By Westheimer, Ruth K. and Kaplan, Steven', 5.29, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (359, N'Twelve', N'By Kittredge, Elaine', 5.79, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (360, N'Cycles of Fire: Stars, Galaxies and the Wonder of Deep Space', N'By Hartmann, William K.', 6.38, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (361, N'The Dancing Healers: A Doctor''s Journey of Healing with Native Americans', N'By Hammerschlag, Carl A.', 4.99, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (362, N'Time Exposure: A Photographic Record of the Dinosaur Age', N'By Dixon, Dougal and Burton, Jane', 5.29, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (363, N'The Way of the Trout: Anglers, Wild Fish and Running Water', N'By Montgomery, M. R. and Brown-Wing, Katherine (ILT)', 5.37, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (364, N'Hope Was Here (Newbery Honor Book)', N'By Bauer, Joan', 5.29, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (365, N'A Tale of Two Cities (Oxford World''s Classics)', N'By Dickens, Charles and Sanders, Andrew (EDT)', 5.29, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (366, N'Frank Sinatra: An American Legend', N'By Sinatra, Nancy', 8.24, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (367, N'WP8 - Theory Lessons - Level 2 - Bastien Piano Library', N'By James Bastien', 5.29, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (368, N'Who Owns America?', N'By Hickel, Walter J.', 5.29, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (369, N'Bloodsong', N'By Neimark, Jill', 5.35, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (370, N'The Vampire Book: The Encyclopedia of the Undead', N'By Melton, J. Gordon', 8.35, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (371, N'A Midsummer Night''s Dream (Oxford World''s Classics)', N'By Shakespeare, William and Holland, Peter (EDT)', 5.29, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (372, N'Bob Miller''s Calc for the Clueless: Calc I (Bob Miller''s Clueless Series)', N'By Miller, Robert', 4.99, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (373, N'Mariel of Redwall', N'By Jacques, Brian and Chalk, Gary (ILT)', 5.29, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (374, N'The Body Book: A Fantastic Voyage to the World Within', N'By Bodanis, David', 10.99, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (375, N'Nerilka''s Story (Dragonriders of Pern Series)', N'By McCaffrey, Anne', 4.99, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (376, N'Americas: The Changing Face of Latin America and the Caribbean (A Main Selection of the History Book Club)', N'By Winn, Peter', 6.6, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (377, N'Mayo Clinic On Vision And Eye Health: Practical Answers on Glaucoma, Cataracts, Macular Degeneration & Other Conditions ("MAYO CLINIC ON" SERIES)', N'By Mayo Clinic (COR) and Buettner, Helmut (EDT)', 5.29, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (378, N'Parrot in the Oven: Mi vida (Cover May Vary)', N'By Martinez, Victor', 5.29, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (379, N'A Passion for Golf: The Best of Golf Writing', N'By Garrity, John (INT) and Bishop, Schuyler (EDT)', 5.58, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (380, N'The Way of the Wizard: Twenty Spiritual Lessons for Creating the Life You Want', N'By Chopra, Deepak', 4.99, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (381, N'Handmade for Profit!: Hundreds of Secrets to Success in Selling Arts and Crafts', N'By Brabec, Barbara', 5.29, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (382, N'Totline Teaching Tales ~ Short-Short Stories ~ Simple Stories For Young Children Plus Seasonal Activities', N'By Warren, Jean and McKinnon, Elizabeth S. (EDT)', 5.29, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (383, N'Treasury Whole Language Literature Ideas (Troll Teacher Idea Books)', N'By Reeves, Barbara', 5.29, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (384, N'Meet the Author (Troll Professional Series)', N'By Orzakis, Laurie', 5.29, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (385, N'Adventuring Along the Southeast Coast: The Sierra Club Guide to the Low Country, Beaches, and Barrier Islands of North Carolina, South Carolina, and (Sierra Club Adventure Travel Guides)', N'By Bowen, John', 5.29, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (386, N'Totline Teaching Tales ~ Teeny-Tiny Folktales ~ Simple Folktales For Young Children Plus Flannelboard Patterns', N'By Warren, Jean', 5.29, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (387, N'Discovering Oceans, Lakes, Ponds and Puddles', N'By Frame, Jeron Ashford and Holladay, Scott (ILT)', 5.29, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (388, N'Game Birds Of North America', N'By Rue, Leonard Lee', 10.99, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (389, N'The Birdwatcher''s Companion', N'By MacKay, Barry Kent', 13.13, 12)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (390, N'Stalking birds with color camera,', N'By Allen, Arthur A', 15.4, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (391, N'Glorious French Food: A Fresh Approach to the Classics', N'By Peterson, James', 9.5, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (392, N'The Portrait of a Lady (Oxford World''s Classics)', N'By James, Henry and Bradbury, Nicola (EDT)', 5.29, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (393, N'Wilderness kingdom, Indian life in the Rocky Mountains: 1840-1847;: The journals & paintings of Nicolas Point', N'By Point, Nicolas', 17.38, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (394, N'Managing Transitions: Making The Most Of Change', N'By Bridges, William', 4.99, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (395, N'False Assumptions', N'By Cloud, Henry and Townsend, John', 5.27, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (396, N'Mortgaging The Earth: The World Bank, Environmental Impoverishment, and the Crisis of Development', N'By Rich, Bruce', 5.64, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (397, N'Banff Springs the Story of a Hotel', N'By Bart Robinson', 5.29, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (398, N'Origins Of History', N'By Butterfield, Herbert', 5.29, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (399, N'What Bird Did That?: A Driver''s Guide to Some Common Birds of North America', N'By Silver, Burton', 4.99, 11)
GO
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (400, N'A Separate Peace with Connections (HRW Library)', N'By Holt Mcdougal (COR)', 5.29, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (401, N'Inner Revolution', N'By Thurman, Robert A. F.', 4.99, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (402, N'Lost Cities of the Maya (Discoveries)', N'By Baudez, Claude F. and Picasso, Sydney', 5.29, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (403, N'Life in Ancient Egypt', N'By Erman, Adolf', 4.99, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (404, N'25 Bicycle Tours in New Jersey', N'By Zatz, Aline and Zatz, Joel', 5.29, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (405, N'The World of the Ancient Maya', N'By Henderson, John S.', 10.99, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (406, N'A delicately personal matter: A J.D. Mulroy mystery novel', N'By Werry, Richard R.', 5.29, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (407, N'Terrorism and Democracy', N'By Turner, Stansfield', 4.99, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (408, N'A Son of Thunder: Patrick Henry and the American Republic', N'By Mayer, Henry', 5.35, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (409, N'Cam Jansen and the Triceratops Pops Mystery #15', N'By Adler, David A. and Natti, Susanna (ILT)', 4.99, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (410, N'Summerland', N'By Chabon, Michael', 6.06, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (411, N'Three Gospels', N'By Price, Reynolds (EDT)', 5.29, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (412, N'Creative Conversations: The Writer''s Complete Guide to Conducting Interviews', N'By Schumacher, Michael', 5.29, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (413, N'Doing It', N'By Burgess, Melvin', 5.29, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (414, N'The Wind in the Willows (Children''s Classics)', N'By Kenneth Grahame', 4.99, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (415, N'500 Full-Size Patchwork Patterns', N'By Malone, Maggie', 5.29, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (416, N'Cases in managerial finance (The Dryden Press series in finance)', N'By Eugene F Brigham', 11.01, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (417, N'Stress And The Family: Coping With Normative Transitions (Psychosocial Stress Series)', N'By McCubbin, Hamilton I. (EDT)', 5.29, 11)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (418, N'Demon of the Waters: The True Story of the Mutiny on the Whaleship Globe', N'By Gibson, Gregory', 4.99, 10)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (419, N'The Tiananmen Papers : The Chinese Leadership''s Decision to Use Force Against Their Own People - In Their Own Words', N'By Liang, Zhang (COM), Nathan, Andrew J. (EDT), Link, Perry (EDT), Nathan, Andrew J., Zhang, Liang, Link, E. Perry (EDT), Zhang, Liang (EDT), Link, E. Perry, and Liang, Zhang', 4.99, 10)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (420, N'Struggle for Intimacy (Adult Children of Alcoholics series)', N'By Woititz, Janet Geringer', 5.29, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (421, N'550 Home Landscaping Ideas', N'By Fell, Derek and Erler, Catriona', 10.99, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (422, N'Money Harmony: Resolving Money Conflicts in Your Life and Relationships', N'By Mellan, Olivia', 16.49, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (423, N'Who Says Elephants Can''t Dance?: Inside IBM''s Historic Turnaround', N'By Gerstner, Louis V., Jr.', 4.99, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (424, N'The Expert''s Guide To Backyard Birdfeeding', N'By Adler, Bill, Hughes, Heide, and Hughes, Heidi', 4.99, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (425, N'Totline 123 Puppets (1 2 3 Series: Language Ages 2-6)', N'By Warren, Jean', 5.29, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (426, N'American Artists On Art: From 1940 To 1980 (Icon Editions)', N'By Johnson, Ellen H. (EDT)', 5.29, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (427, N'Swan watch', N'By Budd Schulberg', 5.47, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (428, N'The American musical theater;: A consideration (A CBS Legacy collection book)', N'By Engel, Lehman', 10.99, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (429, N'The Princess Test (Princess Tales)', N'By Andersen, Hans Christian, Levine, Gail Carson, Elliott, Mark (ILT), and Elliott, Mark', 10.99, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (430, N'The Nature of Theatre.', N'By Roberts, Vera Mowry', 7.85, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (431, N'Interactive Bulletin Boards', N'By Prizzi, Elaine and Hoffmann, Jeanne', 4.99, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (432, N'Parthian Words', N'By Storm Jameson', 5.86, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (433, N'Best Cat Stories', N'By O''Mara, Lesley and Geldart, William Geldart (ILT)', 5.29, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (434, N'Religion in America: An historical account of the development of American religious life', N'By Hudson, Winthrop Still', 12.99, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (435, N'Why Can''t I Fall in Love? A 12-Step Program', N'By Boteach, Shmuel', 5.29, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (436, N'Wolf in the Shadows (A Sharon Mccone Mystery)', N'By Muller, Marcia', 5.53, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (437, N'Just Build the Ark and the Animals Will Come:: Children on Bible Stories', N'By Heller, David', 5.29, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (438, N'A Man for All Seasons: A Play in Two Acts', N'By Bolt, Robert', 5.29, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (439, N'Jeremy: The Tale of an Honest Bunny', N'By Karon, Jan and Weidner, Teri (ILT)', 4.99, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (440, N'Invisible No More: The Secret Lives of Women Over 50', N'By Fisher, Renee, Kramer, Joyce, Peelen, Jean, and Llc, Invisible No More', 5, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (441, N'Harrap''s Spanish and English Pocket Dictionary (Harrap''s Dictionaries)', N'By Alvarez Garcia, Teresa (EDT), Rodger, Liam (EDT), and Ron Diaz, Elena (EDT)', 4.99, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (442, N'The National Air and Space Museum', N'By Bryan, C. D. B.', 11.71, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (443, N'Free Flight: From Airline Hell to a New Age of Travel', N'By Fallows, James M.', 4.99, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (444, N'The Book of Massage: The Complete Step-by-Step Guide To Eastern And Western Techniques', N'By Lidell, Lucinda, Thomas, Sara, Cooke, Carola Beresford, and Porter, Anthony', 4.99, 9)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (445, N'The practice of social research', N'By Babbie, Earl', 6.72, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (446, N'Endangered Pleasures: In Defense of Naps, Bacon, Martinis, Profanity, and Other Indulgences', N'By Holland, Barbara', 5.29, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (447, N'Hosting the Birds: How to Attract Birds to Nest in Your Yard', N'By Mahnken, Jan', 5.29, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (448, N'Families on the Fault Line', N'By Rubin, Lillian B.', 5.29, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (449, N'Our Last Best Shot: Guiding our Children Through Early Adolescence', N'By Stepp, Laura Sessions', 4.99, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (450, N'Intermediate Algebra Functions and Authentic Applications', N'By Lehmann, Jay', 7.4, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (451, N'The Clustering of America', N'By Weiss, Michael J.', 4.99, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (452, N'Nelson Rockefeller,: A biography', N'By Morris, Joe Alex', 14.62, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (453, N'The PreHistory of The Far Side: A 10th Anniversary Exhibit (Volume 14)', N'By Larson, Gary', 8.79, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (454, N'Double Buckeyes: A Story of the Way America Used to Be', N'By Shuster, Bud', 5, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (455, N'Investment Biker: Around the World With Jim Rogers', N'By Rogers, Jim', 5.29, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (456, N'Lyndon Baines Johnson: Late a President of the United States: Memorial Services in the Congress of the United States and tributes in eulogy', N'By Various', 19.95, 578)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (457, N'Readings in art history', N'By Spencer, Harold', 5.29, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (458, N'Shakedown: Exposing The Real Jesse Jackson', N'By Timmerman, Kenneth R.', 8.79, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (459, N'The Man Who Saw Through Time (The Scribner Library, Lyceum Editions, No. SL429)', N'By Eiseley, Loren C.', 5.29, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (460, N'Speaking Out for Animals: True Stories About People Who Rescue Animals', N'By Stallwood, Kim W. (EDT)', 5.29, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (461, N'Message from Forever: A Novel of Aboriginal Wisdom', N'By Morgan, Marlo', 4.99, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (462, N'A Prophet In His Own Country: The Triumphs and Defeats of Adlai E. Stevenson', N'By Kenneth S. Davis', 36.61, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (463, N'Hacking Exposed: Network Security Secrets & Solutions, Third Edition (Hacking Exposed)', N'By McClure, Stuart, Scambray, Joel, and Kurtz, George', 6.78, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (464, N'Aditi: The Living Arts of India', N'By Adams, Robert and Sethi, Rajeev (EDT)', 10.99, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (465, N'Shuffle Up and Deal: The Ultimate No Limit Texas Hold ''em Guide (World Poker Tour)', N'By Sexton, Mike', 4.99, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (466, N'Practical Small Gardens', N'By McHoy, Peter', 8.79, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (467, N'A Taste for Love: A Romantic Cookbook for Two', N'By Harbison, Elizabeth M. and McGowan, Mary', 5.29, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (468, N'Venom of Argus', N'By Avery, Richard', 4.99, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (469, N'The Closing of the American Mind', N'By Bloom, Allan', 4.99, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (470, N'Fight Fat After Forty', N'By Peeke, Pamela', 4.99, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (471, N'On the Edge of Cliff', N'By Pritchett, V. S.', 5.29, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (472, N'Romans', N'By Navigators', 4.99, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (473, N'Ain''t You Glad You Joined the Republicans?: A Short History of the Gop', N'By Batchelor, John Calvin', 5.76, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (474, N'The Professional: Lyndon B. Johnson', N'By White, William Smith', 12.12, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (475, N'Don''t Know Much About the Bible: Everything You Need to Know About the Good Book but Never Learned', N'By Davis, Kenneth C.', 8.79, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (476, N'The Power of Nice', N'By Dale, Jim, Shapiro, Ronald M., and Jankowski, Mark A.', 7.37, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (477, N'Bringing Out the Best in Your Child: 80 Ways to Focus on Every Kid''s Strengths', N'By Tobias, Cynthia Ulrich and Funk, Carol', 5.29, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (478, N'Dave Barry''s Stay Fit and Healthy Until You''re Dead', N'By Barry, Dave', 4.99, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (479, N'Language and Myth', N'By Cassirer, Ernst', 14.62, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (480, N'Ripken: Cal on Cal', N'By Ripken, Cal, Jr., Iooss, Walter (PHT), and Vancil, Mark (EDT)', 8.79, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (481, N'German in 32 Lessons (Gimmick Series)', N'By Adrienne', 5.29, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (482, N'24 Essential Lessons for Investment Success: Learn the Most Important Investment Techniques from the Founder of Investor''s Business Daily', N'By O''Neil, William J.', 4.99, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (483, N'Many Waters', N'By L''Engle, Madeleine', 5.29, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (484, N'The Last Debate: A Novel of Politics and Journalism', N'By Lehrer, James, Smith, Peter (EDT), and Osnos, Peter', 4.99, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (485, N'Parents in Charge: Setting Healthy, Loving Boundaries for You and Your Child', N'By Chidekel, Dana', 5.29, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (486, N'Prep (Junior Library Guild Selection)', N'By Coburn, Jake', 5.29, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (487, N'This Lullaby', N'By Dessen, Sarah', 4.99, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (488, N'No mean city,: An inquiry into civic greatness,', N'By McKeldin, Theodore R', 10.1, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (489, N'ROLLING THUNDER: Jet Combat From WW II to the Gulf War', N'By Rendall, Ivan', 5.41, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (490, N'The Everything Cover Letter Book (Everything)', N'By Graber, Steven and Lipsman, Mark', 5.35, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (491, N'Norman Mark''s Chicago: Walking, bicycling & driving tours of the city', N'By Mark, Norman', 8.85, 8)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (492, N'Believing in Jesus', N'By Foley, Leonard', 5.29, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (493, N'Irish Druids and Old Irish Religions', N'By Bonwick, James', 4.99, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (494, N'Eat Smart for a Healthy Heart Cookbook', N'By Cooley, Denton A., M.D. and Moore, Carolyn E.', 6.12, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (495, N'I Can Print A to Z (Wipe-off Activity Book--Reusable)', N'By Enterprises Incorporated Trend', 5.29, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (496, N'1-2-3 Murals: Simple Murals to Make from Children''s Open-Ended Art', N'By Warren, Jean', 5.29, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (497, N'A Book of Americans', N'By Benet, Rosemary', 15.4, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (498, N'The Pleasures of Watching Birds', N'By Oberman, Lola and Swan, Joy (ILT)', 5.29, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (499, N'Young Men and Fire', N'By MacLean, Norman', 4.99, 7)
GO
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (500, N'The Heritage of British Literature', N'By Bowen, Elizabeth', 10.99, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (501, N'Creating Sanctuary: A New Approach to Gardening in the Washington Metropolitan Area', N'By Mitchell, Sherry', 5.29, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (502, N'Spain (Culture Shock! A Survival Guide to Customs & Etiquette)', N'By Graff, Marie Louise', 7.29, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (503, N'The Metropolitan Museum of Art: The Cloisters; the Building and the Collection of Medieval Art in Fort Tryon Park', N'By James Joseph Rorimer', 4.99, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (504, N'Second Treatise of Government', N'By John Locke', 5.29, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (505, N'Worldwide Wonders', N'By Harris, Tina', 5.29, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (506, N'Essential History of Art', N'By Editor', 8.79, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (507, N'Where to Find It in the Bible: The Ultimate A to Z Resource', N'By Ken Anderson', 8.79, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (508, N'The German Panzers, from Mark I to Mark V "Panther" - Armor Series 2', N'By Feist, Uwe', 26.29, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (509, N'What Makes a Goya a Goya?', N'By Muhlberger, Richard', 4.99, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (510, N'How to Be Your Dog''s Best Friend: A Training Manual for Dog Owners', N'By Monks, New Skete', 5.29, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (511, N'Let Freedom Ring: Winning the War of Liberty over Liberalism', N'By Hannity, Sean', 4.99, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (512, N'When All Hell Breaks Loose', N'By Spencer, Camika', 5.29, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (513, N'Gorgias (The Penguin Classics, L94)', N'By Plato and Hamilton, Walter', 5.29, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (514, N'Quiet Times for Couples', N'By Wright, H. Norman', 5.41, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (515, N'Herds of Thunder, Manes of Gold', N'By Coville, Bruce', 5.29, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (516, N'Transitions: Making Sense of Life''s Changes', N'By Bridges, William', 4.99, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (517, N'Beginner''s Guide to Golf', N'By Lumb, Nick', 10.99, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (518, N'I am the fox,', N'By Winifred Van Etten', 146.13, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (519, N'Secretaries of war and secretaries of the army: Portraits & biographical sketches (CMH pub)', N'By Bell, William Gardner', 4.99, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (520, N'A Contest of Faiths: Missionary Women and Pluralism in the America Southwest', N'By Yohn, Susan M.', 4.99, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (521, N'The Single Parent''s Money Guide', N'By Card, Emily and Kelly, Christie Watts', 4.99, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (522, N'F2f', N'By Finch, Phillip', 4.99, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (523, N'Freud''s Wishful Dream Book', N'By Welsh, Alexander', 18, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (524, N'Ingenious Inventions of Domestic Utility', N'By Bragdon, Allen D.', 5.29, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (525, N'Complete Idiot''s Guide to Parenting Your Teenager (The Complete Idiot''s Guide)', N'By Kelly, Kate', 5.29, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (526, N'The Antiques Care & Repair Handbook', N'By Jackson, Albert and Day, David', 4.99, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (527, N'Great Pyramid: Its Secrets & Mysteries Revealed', N'By Smyth, Charles Piazzi', 6.36, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (528, N'Holy War Inc. Inside the Secret World of Osama Bin Laden', N'By Bergen, Peter L.', 4.99, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (529, N'Flavor', N'By DiSpirito, Rocco, Leutwyler, Henry, and Sherer, Kris', 7.45, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (530, N'Cinderella Cinderella Mini Book: Mini version (Fay''s Fairy Tales)', N'By Wegman, William, Kismaric, Carole, and Heiferman, Marvin', 5.29, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (531, N'After the Boxes Are Unpacked', N'By Miller, Susan', 4.99, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (532, N'The Big Book of Gardening Skills', N'By Gardenway Book (EDT)', 10.99, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (533, N'Eakins', N'By Schendler, Sylvan', 6.83, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (534, N'Race relations (Prentice-Hall sociology series)', N'By Kitano, Harry H. L.', 4.99, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (535, N'The Washington ethnic food store guide', N'By Lawson, Jim C', 12.99, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (536, N'Reflections in a Glass Eye: Works from the International Center of Photography Collection', N'By International Center of Photography (PHT), Hollander, Anne (EDT), Handy, Ellen (EDT), and Handy, Ellen', 8.08, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (537, N'Getting Started in Powerboating', N'By Armstrong, Bob', 5.29, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (538, N'Worth the Fighting For: A Memoir', N'By McCain, John and Salter, Mark', 4.99, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (539, N'Red Dragon Rising: Communist China''s Military Threat to America', N'By Timperlake, Edward and Triplett, William C., II', 4.99, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (540, N'All the Way Home', N'By Giff, Patricia Reilly', 5.29, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (541, N'Totline 123 Rhymes Stories & Songs ~ Open-Ended Language (1-2-3 Series) Ages 3-6', N'By Warren, Jean', 5.29, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (542, N'Pineapples, Penguins and Pagodas (Kids'' Stuff)', N'By Keeling, Jan (EDT) and Jinkins, Barbara', 5.29, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (543, N'The Book of Ch''I: Harnessing the Healing Forces of Energy', N'By Wildish, Paul', 13.98, 7)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (544, N'Being Little in Cambridge When Everyone Else Was Big', N'By Abbott, Eleanor Hallowell', 29.29, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (545, N'The Hero Within', N'By Pearson, Carol S.', 5.29, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (546, N'Western', N'By Yerby, Frank', 16.16, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (547, N'Numbers (Wipe-Off Activity Books)', N'By', 5.29, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (548, N'Baroque Painting (Barron''s Art Handbooks: Yellow Series)', N'By Parramon''s Editorial Team (COR)', 5.29, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (549, N'More Ghosts of Gettysburg: Spirits, Apparitions and Haunted Places of the Battlefield', N'By Nesbitt, Mark V.', 4.99, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (550, N'Pierre Franey''s Cooking In America', N'By Franey, Pierre, Jarrett, Lauren (ILT), and Flaste, Richard', 5.29, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (551, N'Greek Art (New Revised Edition)', N'By Boardman, John', 5.29, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (552, N'Utopia (Crofts Classics)', N'By More, Thomas, Sir, Saint and Ogden, H. V. S. (EDT)', 5.29, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (553, N'Bias: A CBS Insider Exposes How the Media Distort the News', N'By Goldberg, Bernard', 4.99, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (554, N'Plain and Simple: A Woman''s Journey to the Amish', N'By Bender, Sue', 5.29, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (555, N'Twentieth-century art from the Nelson Aldrich Rockefeller collection', N'By LIEBERMAN, Nelson A', 49.97, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (556, N'7 Simple Steps to Unclutter Your Life', N'By Smallin, Donna', 5.29, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (557, N'Virginia trout streams: A guide to fishing the Blue Ridge watershed', N'By Slone, Harry', 5.29, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (558, N'How to Fool Fish With Feathers: The Incompleat Guide to Fly-Fishing', N'By MacNelly, Jeff and Margolis, Jon', 5.29, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (559, N'Tom Brown''s Schooldays (Oxford World''s Classics)', N'By Sanders, Andrew, Hughes, Arthur, and Hughes, Thomas', 4.99, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (560, N'Metamorphoses (Oxford World''s Classics)', N'By Ovid, Melville, A. D. (TRN), and Kenney, E. J. (INT)', 4.99, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (561, N'Germinal (Oxford World''s Classics)', N'By Zola, Emile, Collier, Peter (TRN), and Lethbridge, Robert (TRN)', 5.29, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (562, N'The California Coastal Resource Guide', N'By California Coastal Commission, Caughman, Madge, and Ginsberg, Joanne S.', 10.99, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (563, N'Tools and Gadgets (Historic Communities (Paperback))', N'By Kalman, Bobbie', 5.29, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (564, N'Matilda', N'By Gallico, Paul', 16.76, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (565, N'The Ultimate Book Of Paint Effects', N'By Salli Brand, Jullie Collins, Catherine Cumming, Tricia Greening, Katrina Hall, Frances Halliday, Clare Louise Hunt, Joanna Jones, Lawrence Llewelyn Bo', 8.79, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (566, N'Where No One Has Gone Before: A History in Pictures (Star Trek)', N'By Dillard, J. M. and Dillar, J. M.', 8.29, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (567, N'Superdog: Raising the Perfect Canine Companion', N'By Fox, Michael W.', 5.29, 631)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (568, N'Football America: Celebrating Our National Passion', N'By Barber, Phil and Didinger, Ray', 7.62, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (569, N'In Our Own Image: Building an Artificial Person', N'By Caudill, Maureen', 4.99, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (570, N'Death and Deconstruction', N'By Fleming, Anne', 4.99, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (571, N'1990 BEST-RECIPES YEARBOOK', N'By "Better Homes and Gardens"', 5.76, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (572, N'People of the High Plateau', N'By Berman, Carl', 10.99, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (573, N'The Education of the Heart: Readings and Sources for Care of the Soul, Soul Mates, and The Re-Enchantment of Everyday Life', N'By Moore, Thomas (EDT)', 5.29, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (574, N'Legends: Conversations With Baseball Greats', N'By Rust, Art and Marley, Michael', 6.23, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (575, N'Out to Canaan (Book 4 of the Mitford Years)', N'By Karon, Jan', 4.99, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (576, N'Management and Organizational Behavior', N'By Hunsaker, Phillip L., Cook, Curtis W., and Coffey, Robert E.', 7.27, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (577, N'What Every Woman Needs to Know about Menopause: The Years Before, During, and After', N'By Minkin, Mary Jane, M.D. and Wright, Carol V.', 10.99, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (578, N'Garfield Book of Cat Names', N'By Davis, Jim and Wallace, Carol', 5.29, 6)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (579, N'Introductory clinical pharmacology', N'By Jeanne C Scherer', 5.37, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (580, N'Decorating with Wreaths, Garlands, Topiaries & Bouquets', N'By Mays, Steven (PHT) and Sterbenz, Carol Endler', 4.99, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (581, N'Prince Charles', N'By Brown, Michele', 5.29, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (582, N'Laura Ashley Color: Using Color to Decorate Your Home', N'By Berry, Susan, Laura Ashley (Firm) (COR), Ashley, Laura, and Kuscenko, Valerie (EDT)', 7.13, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (583, N'Shark Tank: Greed, Politics, and the Collapse of Finley Kumble, One of America''s Largest Law Firms', N'By Eisler, Kim Isaac', 5.29, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (584, N'Antiques as an Investment', N'By Rush, Richard H.', 8.79, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (585, N'The Real War on Crime: Report of the National Criminal Justice Commission, The', N'By National Criminal Justice Commission (U. S.) (COR) and Donziger, Steven A. (EDT)', 5.29, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (586, N'Ernie And His Merry Monsters (Sesame Street Good-Night Stories)', N'By Michaela Muntean', 5.29, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (587, N'The Quarterlifer''s Companion : How to Get on the Right Career Path, Control Your Finances, and Find the Support Network You Need to Thrive', N'By Wilner, Abby and Stocker, Catherine', 5.29, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (588, N'Leaving Town Alive: Confessions of an Arts Warrior', N'By Frohnmayer, John', 4.99, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (589, N'A Show of Hands: Say It in Sign Language', N'By Sullivan, Mary Beth and Bourke, Linda', 5.29, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (590, N'Silent Sons: A Book for and About Men', N'By Ackerman, Robert J.', 4.99, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (591, N'Walker Evans: A Biography', N'By Evans, Walker and Rathbone, Belinda', 5.29, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (592, N'Meteorology today: An introduction to weather, climate, and the environment', N'By Ahrens, C. Donald', 7.35, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (593, N'Contest for a Capital: George Washington, Robert Morris, and Congress, 1783-1791, Contenders : Dramatized Events of America''s Founding Years', N'By Loftin, T. L. and Zarambouka, Sofia (ILT)', 4.99, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (594, N'Americas Glorious Quilts', N'By Duke, Dennis', 10.56, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (595, N'Cars 1886-1930', N'By Georgano, G. N.', 7.67, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (596, N'Dr Jekyll and Mr Hyde and Weir of Hermiston (Oxford World''s Classics)', N'By Stevenson, Robert Louis and Letley, Emma', 5.29, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (597, N'Spirited Americans: A Commentary on America''s Optimists-From the Puritans to the Cybr-Century', N'By Jeffcoat, A. E.', 4.99, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (598, N'What Went Wrong?: Western Impact and Middle Eastern Response', N'By Lewis, Bernard', 8.79, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (599, N'Lessons from the Fairway: Inspirational Stories from the Fairway for the Yound and Old Alike!', N'By Fisher, R. McKenzie', 4.99, 5)
GO
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (600, N'Your Sacred Self', N'By Dyer, Wayne W.', 4.99, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (601, N'The World''s Whales: The Complete Illustrated Guide', N'By Balcomb, Kenneth C., Foster, Larry, and Minasian, Stanley M.', 10.99, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (602, N'Taming and Training Conures', N'By Teitler, Risa', 5.29, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (603, N'In the Footsteps of Gandhi: Conversations With Spiritual Social Activists', N'By Ingram, Catherine and Gandhi, Ramchandra (FRW)', 5.29, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (604, N'Is Sex Necessary?: Or, Why You Feel the Way You Do', N'By White, E. B. and Thurber, James', 5.29, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (605, N'Dark windows,', N'By McDaniel, Weston Owen', 23.79, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (606, N'The bedside book of Martin Buxbaum', N'By Buxbaum, Martin', 24.13, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (607, N'The Winemaker''s Year: Four Seasons in Bordeaux', N'By Buller, Michael', 10.99, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (608, N'Balancing Acts', N'By Hoagland, Edward', 4.99, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (609, N'Sacred Stories: A Celebration of the Power of Story to Transform and Heal', N'By Simpkinson, Charles (EDT) and Simpkinson, Anne (EDT)', 4.99, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (610, N'Zen Lessons: The Art of Leadership', N'By Thomas Translated by Cleary', 4.99, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (611, N'Stencil Source Book 2: Over 200 New Designs', N'By Meehan, Patricia', 8.79, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (612, N'Cities Then & Now', N'By Antoniou, Jim', 6, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (613, N'Gardens of the World: The Art and Practice of Gardening', N'By Hobhouse, Penelope and McDonald, Elvin (CON)', 7.09, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (614, N'Brass', N'By Walsh, Helen', 4.99, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (615, N'REASONABLE DOUBTS: The O.J. Simpson Case and the Criminal Justice System', N'By Dershowitz, Alan M.', 5.29, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (616, N'The Lives of the Muses: Nine Women & the Artists They Inspired', N'By Prose, Francine', 4.99, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (617, N'Frederic Remington: Paintings, Drawings, and Sculpture in the Amon Carter Museum and the Sid W. Richardson Foundation Collections', N'By Peter H. Hassrick', 4.99, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (618, N'The Civil War Trust''s Official Guide to the Civil War Discovery Trail', N'By Braselton, Susan Collier (EDT), Civil War Trust (U. S.) (EDT), Andrews, Edgar M. (EDT), Birkhead, Paul J. (EDT), Fix, Julie K. (EDT), Gruber, Elliot H. (EDT), and McMahon, Danielle V. (EDT)', 5.29, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (619, N'Pilgrim: A Novel', N'By Findley, Timothy', 5.29, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (620, N'Soup Suppers: More Than 100 Main-Course Soups and 40 Accompaniments', N'By Schwartz, Arthur', 4.99, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (621, N'The Big Bands Trivia Quiz Book', N'By Simon, George', 5.29, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (622, N'The American Style of Foreign Policy: Cultural Politics and Foreign Affairs', N'By Dallek, Robert', 5.29, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (623, N'D.H. Lawrence: The Story of a Marriage', N'By Maddox, Brenda', 6.32, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (624, N'The Illustrated Almanac of Historical Facts: From the Dawn of the Christian Era to the New World Order', N'By Stewart, Robert', 6.24, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (625, N'Notable American Women: A Biographical Dictionary: Notable American Women: The Modern Period: A Biographical Dictionary (Notable American Women) (Volume 4)', N'By Sicherman, Barbara (EDT) and Green, Carol Hurd (EDT)', 8.79, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (626, N'Ashes of Glory: Richmond at War', N'By Furgurson, Ernest B.', 29.96, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (627, N'Orthopedic Disorders (Mosby''s Clinical Nursing Series)', N'By Mourad, Leona A.', 10.99, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (628, N'God''s Masterwork: A Concerto in Sixty-Six Movements : Ezra Through Daniel (Swindoll Bible Study Guides , Part 2)', N'By Swindoll, Charles R.', 4.99, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (629, N'In Buddha''s Kitchen : Cooking, Being Cooked, and Other Adventures at a Meditation Center', N'By Snow, Kimberley', 4.99, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (630, N'Crossing Over: The Stories Behind the Stories', N'By Edward, John', 13.48, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (631, N'Business Law: Text and Cases', N'By Allison, John R., Howell, Rate A., and Prentice, Robert A.', 9.77, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (632, N'Sea Otters: A Natural History and Guide', N'By Nickerson, Roy', 19.25, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (633, N'Becoming satisfied: A man''s guide to sexual fulfillment (A Spectrum book)', N'By Nowinski, Joseph', 6.64, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (634, N'Marketing', N'By Keegan, Warren J., Moriarty, Sandra, Duncan, Tom', 8.03, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (635, N'The New Yorker Cartoon Album 1975-1985', N'By The New Yorker', 4.99, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (636, N'We Are America', N'By Joy, Anna', 10.99, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (637, N'Dr. Nancy Snyderman''s Guide to Health: For Women over Forty', N'By Blackstone, Margaret and Snyderman, Nancy L., M.D.', 5.53, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (638, N'Unravelling', N'By Graver, Elizabeth', 4.99, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (639, N'An Obedient Father', N'By Sharma, Akhil', 5.29, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (640, N'Like the Red Panda', N'By Seigel, Andrea', 4.99, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (641, N'East Asia: From Chinese Predominance to the Rise of the Pacific Rim', N'By Cotterell, Arthur', 4.89, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (642, N'Hamlet''s Mother and Other Women', N'By Heilbrun, Carolyn G.', 10.99, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (643, N'The Book of Intimate Grammar', N'By Grossman, David and Rosenberg, Betsy (TRN)', 5.29, 5)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (644, N'Sunset Recipe Annual 1995', N'By Sunset Books', 6.18, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (645, N'Ritalin Nation: Rapid-Fire Culture and the Transformation of Human Consciousness', N'By Degrandpre, Richard J.', 5.29, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (646, N'Ashes to Ashes: America''s Hundred-Year Cigarette War, the Public Health, and the Unabashed Triumph of Philip Morris', N'By Kluger, Richard', 10.99, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (647, N'Recyclopedia: Games, Science Equipment, and Crafts from Recycled Materials', N'By Simons, Robin', 4.99, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (648, N'The Survival Factor', N'By Birkhead, Mike and Birkhead, Tim', 10.99, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (649, N'First and last love', N'By Sheean, Vincent', 23.11, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (650, N'Greek Mythology (An Encyclopedia Of Myth And Legend)', N'By Stoneman, Richard', 5.29, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (651, N'World of Our Fathers: The Journey of The Eastern European Jews to America', N'By Libo, Kenneth and Howe, Irving', 5.19, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (652, N'Dance Of A Fallen Monk: The Twists And Turns Of A Spiritual Life', N'By Fowler, George', 5.29, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (653, N'Intervention and Reflection: Basic Issues in Medical Ethics (Philosophy)', N'By Munson, Ronald and Hoffman, Christopher A.', 5.58, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (654, N'Politics of Latin American Development', N'By Wynia', 5.29, 579)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (655, N'Ronald Reagan: His Life In Pictures', N'By Spada, James', 8.79, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (656, N'Custer Story', N'By Rh Value Publishing', 5.64, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (657, N'150 Years of Photo Journalism', N'By Yapp, Nick', 7.2, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (658, N'Deadlock: The Inside Story of America''s Closest Election', N'By Nakashima, Ellen', 4.99, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (659, N'Truman', N'By McCullough, David', 6.87, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (660, N'Crafts of Israel', N'By DAYAN, Ruth and Feinberg, Willie', 8.79, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (661, N'Understanding the Chesapeake, a Layman''s Guide,', N'By Sherwood, Arthur W.', 4.99, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (662, N'Alistair Cooke''s America', N'By Cooke, Alistair', 7.06, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (663, N'The Purpose Driven Life Journal', N'By Warren, Rick', 4.99, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (664, N'Going Bridal: How to Get Married Without Losing Your Mind', N'By Robbins, Li', 5.29, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (665, N'Incidents in the Life of a Slave Girl', N'By Jacobs, Harriet, Child, Lydia Maria Francis, and Brent, L.', 5.29, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (666, N'Human Resource Management', N'By Mathis, Robert L. and Jackson, John H.', 7.62, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (667, N'Plumage', N'By Springer, Nancy', 5.37, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (668, N'The Fundamentals of Play: A Novel', N'By Macy, Caitlin', 5.29, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (669, N'Improvised Europeans: American Literary Expatriates In London', N'By Zwerdling, Alex', 5.7, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (670, N'Forever Beautiful With Rex: Makeup Strategies for the Rest of Your Life', N'By Jewell, Diana Lewis, Rex (ILT), and Rex', 6, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (671, N'Best Places to Stay in the Caribbean, Sixth Edition', N'By Jamison, Cheryl Alters, Jamison, Bill, and Shaw, Bruce', 4.99, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (672, N'Solve Your Child''s Sleep Problems', N'By Ferber, Richard', 4.99, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (673, N'All Japan: The Catalogue of Everything Japanese', N'By Dalby, Liza', 10.99, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (674, N'The World Of Biblical Literature', N'By Alter, Robert', 5.29, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (675, N'Geography and Development: A World Regional Approach', N'By FISHER', 7.74, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (676, N'Dissection of the Fetal Pig', N'By Walker, Warren F.', 5.29, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (677, N'Search for Spring', N'By Miller, Moira and Deuchar, Ian (ILT)', 4.99, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (678, N'Death bed: A detective story', N'By Greenleaf, Stephen', 5.29, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (679, N'Caring and Coping When Your Loved One is Seriously Ill', N'By Grollman, Earl A.', 5.29, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (680, N'Voice Lessons: On Becoming a (Woman) Writer', N'By Mairs, Nancy', 5.29, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (681, N'The New Face of Terrorism: Threats from Weapons of Mass Destruction', N'By Cole, Benjamin and Gurr, Nadine', 5.29, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (682, N'The Rich Are Different: A Priceless Treasury of Quotations and Anecdotes About the Affluent, the Posh, a nd the Just Plain Loaded', N'By Winokur, Jon (EDT)', 5.29, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (683, N'Mensa Presents Number Puzzles for Math Geniuses: 200 Fiendish and Intriguing Mind Games', N'By Gale, Harold', 5.29, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (684, N'Nine Innings', N'By Okrent, Daniel', 4.99, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (685, N'Real Lace: America''s Irish Rich', N'By Birmingham, Stephen', 8.79, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (686, N'Call To Home: African Americans Reclaim The Rural South', N'By Stack, Carol B.', 5.29, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (687, N'The Ordinary Seaman', N'By Goldman, Francisco and Golman, Francisco', 4.99, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (688, N'Taking on the World: Joseph and Stewart Alsop, Guardians of the American Century', N'By Merry, Robert W.', 4.99, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (689, N'Born to Rebel: Birth Order, Family Dynamics, and Creative Lives', N'By Sulloway, Frank J.', 8.79, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (690, N'The Monitor Chronicles : One Sailor''s Account : Today''s Campaign to Recover the Civil War Wreck', N'By Mariners'' Museum (Newport News, Va.) (COR), Geer, George S. (EDT), and Marvel, William (EDT)', 19.7, 4)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (691, N'Fire in My Soul', N'By Lester, Joan Steinau and Norton, Eleanor Holmes', 5.53, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (692, N'Maryland Wits and Baltimore Bards: A Literary History with Notes on Washington Writers (Maryland Paperback Bookshelf)', N'By Shivers, Frank R.', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (693, N'War Babies', N'By Busch, Frederick', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (694, N'How to Plant and Grow Annuals (How to Plant and Grow Series)', N'By Reilly, Ann', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (695, N'A Skeleton in God''s Closet', N'By Maier, Paul L.', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (696, N'Words & Quilts: A Selection of Quilt Poems', N'By Mitchell, Felicia (EDT)', 5.41, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (697, N'Home beermaking: The complete beginner''s guidebook', N'By Moore, William', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (698, N'We Should Be So Lucky : Love, Sex, Food, and Fun After Forty from the Diva of QVC', N'By Levine, Kathy, Scovell, Jane, and Appleton, Amy Sarah', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (699, N'The Order of Things: Hierarchies, Structures, and Pecking Orders', N'By Kuklin, Susan', 6.48, 3)
GO
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (700, N'Dining with the Duchess: Making Everyday Meals a Special Occasion', N'By York, Sarah Mountbatten-Windsor, Duchess of', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (701, N'Introductory Linear Algebra With Applications', N'By Kolman, Bernard and Hill, David R.', 7, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (702, N'The search for Peking man', N'By Janus, Christopher G.', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (703, N'Intimate Matters: A History of Sexuality in America', N'By Freedman, Estelle B. and D''Emilio, John', 6.18, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (704, N'Hollywood vs. America: The Explosive Bestseller that Shows How-and Why-the Entertainment Industry Has Broken Faith With Its Audience', N'By Medved, Michael', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (705, N'Shaken Not Stirred', N'By Miller, Anistatia R. and Brown, Jared M.', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (706, N'Henry Adams', N'By Blackmur, R. P', 5.88, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (707, N'A Hole in the Earth', N'By Bausch, Robert', 6.07, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (708, N'You Say You Want a Revolution : A Story of Information Age Politics', N'By Hundt, Reed E.', 5, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (709, N'Kayaking: Whitewater and Touring Basics (A Trailside Guide)', N'By Krauzer, Steven M.', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (710, N'My Country: The Story of Modern Israel', N'By Eban, Abba Solomon', 10.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (711, N'Praying God''s Will For Your Life: A Prayerful Walk To Spiritual Well Being', N'By Omartian, Stormie', 5.19, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (712, N'The Good Black', N'By Barrett, Paul M.', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (713, N'An Inquiry Concerning Human Understanding: With a Supplement, An Abstract of a Treatise of Human Nature', N'By David Hume', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (714, N'The Unfinished Constitution: Philosophy and Constitutional Practice', N'By Arthur, John', 10.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (715, N'PARKER''S WINE BUYER''S GUIDE, 5TH EDITION : Complete, Easy-to-Use Reference on Recent Vintages, Prices, and Ratings for More Than 8,000 Wines from All the Major Wine Regions', N'By Parker, Robert M., Jr.', 9.89, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (716, N'Artificial Intelligence: How Machines Think', N'By Peat, F. David', 5.95, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (717, N'Communications and Networking for the IBM PC and Compatibles', N'By Jordan, Larry E', 6.6, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (718, N'The Macmillan Visual Desk Reference', N'By Diagram Group', 7.93, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (719, N'The standard wine cook book', N'By Director, Anne', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (720, N'Tales Of Passion, Tales Of Woe', N'By Gulland, Sandra', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (721, N'Keeping Life Simple: 380 Tips & Ideas', N'By Levine, Karen', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (722, N'HOLLYWOOD HUSBANDS', N'By Collins, Jackie', 8.78, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (723, N'Raise Heaven and Earth: The Story of Martin Marietta People and Their Pioneering Achievements', N'By Harwood, William B.', 8.79, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (724, N'Learning disabilities, systemizing teaching and service delivery', N'By Sabatino, David A.,', 7.81, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (725, N'The Testament of Light', N'By Bullett, Gerald', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (726, N'The American Geriatrics Society''s Complete Guide to Aging and Health: How We Age*Caring for Parents*Long-Term Care Choices*Wise Health Care Decisions* ... Care Financing*Analysis of Common Ailments', N'By Williams, Mark E., M.D.', 10.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (727, N'Potter Needlework Library, The: Essentials of Sewing, Volume 2', N'By Patterson, Debbie (PHT), Thompson, Sue, and Coe, Miriam', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (728, N'Julius Caesar (Cambridge School Shakespeare)', N'By Shakespeare, William and Seward, Tim (EDT)', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (729, N'Men and Angels', N'By Ward, Theodora', 13.17, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (730, N'Debrett''s book of royal children', N'By Kidd, Charles and Montague-Smith, Patrick', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (731, N'Rock, Roll & Remember', N'By Clark, Dick', 30.77, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (732, N'Inside the House: An irreverent guided tour through the House of Representatives, from the days of Adam Clayton Powell to those of Peter Rodino', N'By Rapoport, Daniel', 7.64, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (733, N'Everyone''s Money Book', N'By Goodman, Jordan Elliot and Bloch, H. I. Sonny', 7.56, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (734, N'The United Lutheran Church in America, 1918-1962', N'By Bachmann, E. Theodore, Bachmann, Mercia Brenne, and Rorem, Paul (EDT)', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (735, N'God''s Psychiatry: Healing for the Troubled Heart and Spirit', N'By Allen, Charles L.', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (736, N'In the Shadow of F.D.R.: From Harry Truman to Bill Clinton', N'By Leuchtenburg, William E.', 10.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (737, N'The Nominative Case', N'By MacKin, Edward', 14.62, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (738, N'The Dannon Book of Yogurt', N'By Stuart, Sandra Lee', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (739, N'TERRITORIES OF THE VOICE', N'By Desalvo, Louise, D''Arcy, Kathleen Walsh, and Hogan, Katherine', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (740, N'The sports factory: An investigation into college sports', N'By Durso, Joseph', 5.65, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (741, N'Intelligent Business Alliances: How to Profit Using Today''s Most Important Strategic Tool', N'By Segil, Larraine', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (742, N'Porterhouse Blue', N'By Sharpe, Tom', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (743, N'Paradigms: The Business of Discovering the Future', N'By Barker, Joel Arthur', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (744, N'Cushions & Covers: A Step-By-Step Guide to Creative Soft Furnishings (Reader''s Digest: Practical Home Decorating)', N'By Moore, Gina', 10.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (745, N'We Interrupt This Broadcast: Relive the Events That Stopped Our Lives...from the Hindenburg to the Death of Princess Diana (book with 2 audio CDs)', N'By Garner, Joe', 5.42, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (746, N'Changing Places: Rebuilding Community in the Age of Sprawl', N'By Moe, Richard and Wilkie, Carter', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (747, N'Anne Frank : The Biography', N'By Kimber, Rita (TRN), Kimber, Robert (TRN), and Muller, Melissa', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (748, N'Muhammad: The messenger of God', N'By Kelen, Betty', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (749, N'The Elegant Onion: The Art of Allium Cookery', N'By Cavage, Betty', 19.95, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (750, N'Awakening Corporate Soul: Four Paths to Unleash the Power of People at Work', N'By Izzo, John B. and Klein, Eric', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (751, N'WW II Air War : The Men, the Machines, the Missions', N'By Sanfelici, Arthur H. (editor)', 6.2, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (752, N'The Puzzles of Amish Life (People''s Place Book No. 10)', N'By Kraybill, Donald B.', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (753, N'A Reason For Hope: Gaining Strength for Your Fight Against Cancer', N'By Barry, Michael S.', 4.99, 573)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (754, N'Exploring the Labyrinth: Making Sense of the New Spirituality', N'By Drury, Nevill', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (755, N'Ending the Homework Hassle', N'By Rosemond, John', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (756, N'The Race for the Triple Crown', N'By Drape, Joe', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (757, N'Lewis and Clark: Doctors in the Wilderness', N'By Paton, Bruce C., M.D.', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (758, N'The Best Intentions', N'By Bergman, Ingmar and Tate, Joan (TRN)', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (759, N'OFFICIAL GUIDE TO THE SMITHSONIAN', N'By Smithsonian Institution (COR) and Hirzy, Ellen Cochran (EDT)', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (760, N'Dale Earnhardt: 1951-2001', N'By Moriarty, Frank', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (761, N'The Insiders'' Guide to Civil War Sites in the Eastern Theater, 2nd', N'By Gleason, Michael P.', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (762, N'The Mayor of Central Park', N'By Avi and Floca, Brian (ILT)', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (763, N'Diary of an Arctic Year', N'By Krasemann, Stephen J.', 7.3, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (764, N'Don''t Give It Away! : A Workbook of Self-Awareness and Self-Affirmations for Young Women', N'By Vanzant, Iyanla and Wilcots, Almasi', 4.89, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (765, N'One Day My Soul Just Opened Up: 40 Days and 40 Nights Toward Spiritual Strength and Personal Growth', N'By Vanzant, Iyanla', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (766, N'St. John''s Wort', N'By Rosenthal, Norman', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (767, N'Long Road to Freedom: The Advocate History of the Gay and Lesbian Movement (Stonewall Inn Editions)', N'By Thompson, Mark (EDT)', 7.03, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (768, N'Escape Your Shape: How to Work Out Smarter, Not Harder', N'By Jackowski, Edward J., Ph.D. and Jeffers, Youzell (ILT)', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (769, N'Pony Express Christmas', N'By Brouwer, Sigmund', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (770, N'Christmas Decorations from Williamsburg''s Folk Art Collection', N'By Abby Aldrich Rockefeller Folk Art Museum', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (771, N'A Crafter''s Book of Angels', N'By Morgenthal, Deborah', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (772, N'Lockheed F-117A: Operation and Development of the Stealth Fighter', N'By Sweetman, Bill and Goodall, James', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (773, N'Here: A Biography of the New American Continent', N'By Depalma, Anthony', 5.81, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (774, N'Phonics (Step Ahead)', N'By Cole, Kathleen A.', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (775, N'The World of Silent Flight', N'By WOLTERS, RICHARD A.', 6, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (776, N'Totline 1 2 3 Books ~ Simple Books To Make For Working With Young Children', N'By Warren, Jean', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (777, N'Songs from the Hills: An Intimate Look at Country Music', N'By Von Matthiessen, Maria', 10.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (778, N'Assessing Special Students: Strategies and Procedures', N'By McLoughlin, J.A., Lewis, R.B.', 10.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (779, N'The transparent self', N'By Jourard, Sidney M.', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (780, N'Islands (Scientific American Library)', N'By Menard, H. W.', 10.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (781, N'The horn of plenty', N'By Harvey, Peggy', 16.16, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (782, N'Home Away from Home', N'By Woititz, Janet Geringer', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (783, N'The Mammoth Cheese: A Novel', N'By Holman, Sheri', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (784, N'The Pearsall Guide to Successful Dog Training: Obedience "from the Dog''s Point of View"', N'By Pearsall, Margaret E.', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (785, N'America-Watching: Perspectives in the Course of an Incredible Century', N'By Johnson, Gerald White', 5.95, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (786, N'People Power: How to Create a Lifetime Network for Business, Career, and Personal Advancement', N'By Fisher, Donna', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (787, N'Half Empty, Half Full: Understanding the Psychological Roots of Optimism', N'By Vaughan, Susan C.', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (788, N'The Sooners', N'By Willoughby, Lee Davis', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (789, N'Finding Birds in the National Capital Area', N'By Wiilds, Claudia', 5.29, 478)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (790, N'Decatur house and its inhabitants', N'By Beale, Marie Oge', 5.67, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (791, N'Holy Siege: The Year That Shook Catholic America', N'By Briggs, Kenneth A.', 10.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (792, N'Guilty: The Collapse of Criminal Justice', N'By Rothwax, Harold J.', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (793, N'Wings Like Eagles', N'By Paul A. Schweizer', 5, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (794, N'Big Trouble: A Murder in a Small Western Town Sets Off a Struggle for the Soul of America', N'By Lukas, J. Anthony', 8.79, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (795, N'The Legal & Regulatory Environment of Business', N'By Corley, Robert N. (EDT)', 10.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (796, N'Life in a Medieval Castle', N'By Gies, Joseph', 4.99, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (797, N'Branch Rickey''s Little Blue Book: Wit and Strategy from Baseball''s Last Wise Man', N'By Monteleone, John J. and Rickey, Branch', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (798, N'Music Machines American Style; A Catalog of the Exhibition', N'By Hoover, Cynthia A', 6.79, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (799, N'What Just Happened: A Chronicle from the Information Frontier', N'By Gleick, James', 5.29, 3)
GO
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (800, N'If You Leave Me, Can I Come Too?', N'By Heimel, Cynthia', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (801, N'Mississippi Memories: Classic American Cooking from the Heartland to the Mississippi Bayou', N'By Rodgers, Rick and Delta Queen Steamboat Co.', 5.41, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (802, N'Pioneering Ascents', N'By Mazel, David (EDT)', 5.37, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (803, N'Feed a Cold, Starve a Fever: A Dictionary of Medical Folklore', N'By Rinzler, Carol Ann', 5.29, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (804, N'The Chiangs of China', N'By Elmer T. Clark', 15.4, 3)
INSERT [dbo].[tblBook] ([BookID], [Title], [Author], [Price], [Quantity]) VALUES (805, N'Antaeus: No. 69, Fall, 1992', N'By Halpern, Daniel (EDT)', 4.99, 3)