home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / perf22.zip / AUTHORS.SQL < prev    next >
Text File  |  1992-08-26  |  3KB  |  88 lines

  1.     drop table authors;
  2. go
  3.     create table authors
  4.     (au_id char(11),
  5.     au_lname varchar(40) not null,
  6.     au_fname varchar(20) not null,
  7.     phone char(12),
  8.     address varchar(40),
  9.     city varchar(20),
  10.     state char(2),
  11.     zip char(5),
  12.     contract smallint)
  13. go
  14. commit
  15. go
  16. insert into authors
  17. values('409-56-7008', 'Bennet', 'Abraham',
  18. '415 658-9932', '6223 Bateman St.', 'Berkeley', 'CA', '94705', 1);
  19. insert into authors
  20. values ('213-46-8915', 'Green', 'Marjorie',
  21. '415 986-7020', '309 63rd St. #411', 'Oakland', 'CA', '94618', 1);
  22. insert into authors
  23. values('238-95-7766', 'Carson', 'Cheryl',
  24. '415 548-7723', '589 Darwin Ln.', 'Berkeley', 'CA', '94705', 1);
  25. insert into authors
  26. values('998-72-3567', 'Ringer', 'Albert',
  27. '801 826-0752', '67 Seventh Av.', 'Salt Lake City', 'UT', '84152', 1);
  28. insert into authors
  29. values('899-46-2035', 'Ringer', 'Anne',
  30. '801 826-0752', '67 Seventh Av.', 'Salt Lake City', 'UT', '84152', 1);
  31. insert into authors
  32. values('722-51-5454', 'DeFrance', 'Michel',
  33. '219 547-9982', '3 Balding Pl.', 'Gary', 'IN', '46403', 1);
  34. insert into authors
  35. values('807-91-6654', 'Panteley', 'Sylvia',
  36. '301 946-8853', '1956 Arlington Pl.', 'Rockville', 'MD', '20853', 1);
  37. insert into authors
  38. values('893-72-1158', 'McBadden', 'Heather',
  39. '707 448-4982', '301 Putnam', 'Vacaville', 'CA', '95688', 0);
  40. insert into authors
  41. values('724-08-9931', 'Stringer', 'Dirk',
  42. '415 843-2991', '5420 Telegraph Av.', 'Oakland', 'CA', '94609', 0);
  43. insert into authors
  44. values('274-80-9391', 'Straight', 'Dick',
  45. '415 834-2919', '5420 College Av.', 'Oakland', 'CA', '94609', 1);
  46. insert into authors
  47. values('756-30-7391', 'Karsen', 'Livia',
  48. '415 534-9219', '5720 McAuley St.', 'Oakland', 'CA', '94609', 1);
  49. insert into authors
  50. values('724-80-9391', 'MacFeather', 'Stearns',
  51. '415 354-7128', '44 Upland Hts.', 'Oakland', 'CA', '94612', 1);
  52. insert into authors
  53. values('427-17-2319', 'Dull', 'Ann',
  54. '415 836-7128', '3410 Blonde St.', 'Palo Alto', 'CA', '94301', 1);
  55. insert into authors
  56. values('672-71-3249', 'Yokomoto', 'Akiko',
  57. '415 935-4228', '3 Silver Ct.', 'Walnut Creek', 'CA', '94595', 1);
  58. insert into authors
  59. values('267-41-2394', 'O''Leary', 'Michael',
  60. '408 286-2428', '22 Cleveland Av. #14', 'San Jose', 'CA', '95128', 1);
  61. insert into authors
  62. values('472-27-2349', 'Gringlesby', 'Burt',
  63. '707 938-6445', 'PO Box 792', 'Covelo', 'CA', '95428', 1);
  64. insert into authors
  65. values('527-72-3246', 'Greene', 'Morningstar',
  66. '615 297-2723', '22 Graybar House Rd.', 'Nashville', 'TN', '37215', 0);
  67. insert into authors
  68. values('172-32-1176', 'White', 'Johnson',
  69. '408 496-7223', '10932 Bigge Rd.', 'Menlo Park', 'CA', '94025', 1);
  70. insert into authors
  71. values('712-45-1867', 'del Castillo', 'Innes',
  72. '615 996-8275', '2286 Cram Pl. #86', 'Ann Arbor', 'MI', '48105', 1);
  73. insert into authors
  74. values('846-92-7186', 'Hunter', 'Sheryl',
  75. '415 836-7128', '3410 Blonde St.', 'Palo Alto', 'CA', '94301', 1);
  76. insert into authors
  77. values('486-29-1786', 'Locksley', 'Chastity',
  78. '415 585-4620', '18 Broadway Av.', 'San Francisco', 'CA', '94130', 1);
  79. insert into authors
  80. values('648-92-1872', 'Blotchet-Halls', 'Reginald',
  81. '503 745-6402', '55 Hillsdale Bl.', 'Corvallis', 'OR', '97330', 1);
  82. insert into authors
  83. values('341-22-1782', 'Smith', 'Meander',
  84. '913 843-0462', '10 Mississippi Dr.', 'Lawrence', 'KS', '66044', 0);
  85. go
  86. commit
  87. go
  88.