WACS: Database Schemas

Database Schemas: Contents

Photographer Table

This is the photographer table - directly below is the sample SQL command to create it and below that details of the fixed values for each of the short fields.
create table photographer
( pref             varchar2(6) primary key,
  pname            varchar2(40),
  paliases         varchar2(80),
  pgender          char(1),
  paddress         varchar2(120),
  pemail           varchar2(80),
  pwebsite         varchar2(80),
  pusual           varchar2(40),
  pregion          varchar2(20),
  pcountry         varchar2(50),
  plocation        varchar2(50),
  pstyledesc	   varchar2(80),
  prating	   number(2),
  phardness        number(2),
  psolo		   char(1),
  ptoys            char(1),
  plesbian         char(1),
  pstraight        char(1),
  pgroup           char(1),
  pfetish          char(1),
  pdigital	   char(1),
  pfilm		   char(1),
  pvideo           char(1),
  phdvideo         char(1),
  pcamera	   varchar2(40),
  pcamnotes        varchar2(80),
  pcomments        varchar2(240),
  pnotes           varchar2(240),
  pbiography       varchar2(1024),
  padded           date,
  pamended         date
);
 

Defined Values For The Photographer Table

Values For Short Fields In Photographer Table
pgender M Male
FFemale
UUnknown
pregion Europe Europe
North AmericaUSA and Canada
South AmericaSouth and Central America
Middle EastMiddle East (brave photographer!)
AsiaAsia (India and the Indian Sub-continent ONLY)
OrientOrient (Asia excluding Indian Sub-continent)
AustralasiaAustralia and New Zealand
AfricaAfrica
OtherOther
prating 0 None
1Awful
2Poor
3Reasonable
4Good
5Excellent
phardness 0 None
1Soft-focus (very arty)
2Glamour
3Normal
4Hard (close-ups)
5Fetish
psolo Y - Yes, does this
O - Occasionally does this
or
N - No, doesn't do this
ptoys
plesbian
pstraight
pgroup
pfetish
pdigital Y - Yes, uses this technology
or
N - No, doesn't use this technology
pfilm
pvideo
phdvideo

Previous Schema: Download  Next Schema: Tag
Back to Schema Overview  Next Section: Futures
Back to WACS Documentation Index