BIOGRAPHY

Each row represents a chimpanzee and is a transformation of the corresponding BIOGRAPHY_DATA row, making the data more like the traditional format and therefore, in one sense, easier to work with. This view contains one row for each chimpanzee on which data has ever been recorded (in SokweDB), and an additional row for UNK a generic value used when a chimpanzee is unrecognized. BIOGRAPHY contains the basic demographic data of individual chimpanzees.

Definition

CREATE OR REPLACE VIEW biography (
   animid
  ,animidnum
  ,animname
  ,birthcomm
  ,bccertainty
  ,sex
  ,momid
  ,dadid
  ,dadidpub
  ,firstborn
  ,birthdate
  ,bdmin
  ,bdmax
  ,bddist
  ,entrydate
  ,entrytype
  ,departdate
  ,departtype)
  AS
    SELECT
        biography_data.animid
       ,biography_data.animidnum
       ,biography_data.animname
       ,biography_data.birthcomm
       ,biography_data.bccertainty
       ,biography_data.sex
       ,biography_data.momid
       ,CASE
          WHEN biography_data.dadprelim
            THEN biography_data.dadid || '_prelim'
          ELSE biography_data.dadid
       END CASE
       ,biography_data.dadidpub
       ,biography_data.firstborn
       ,biography_data.birthdate
       ,biography_data.bdmin
       ,biography_data.bdmax
       ,biography_data.bddist
       ,biography_data.entrydate
       ,biography_data.entrytype
       ,biography_data.departdate
       ,biography_data.departtype
     FROM biography_data;

Columns in the BIOGRAPHY View

The Columns in BIOGRAPHY

Column

From

Description

AnimID

BIOGRAPHY_DATA.AnimID

Animal IDentifier

AnimIDNum

BIOGRAPHY_DATA.AnimIDNum

Animal IDentifier Number

AnimName

BIOGRAPHY_DATA.AnimName

Animal Name

BirthComm

BIOGRAPHY_DATA.BirthComm

Birth Community

BCCertainty

BIOGRAPHY_DATA.BCCertainty

Certainty of BirthComm

Sex

BIOGRAPHY_DATA.Sex

Individual’s Sex

MomID

BIOGRAPHY_DATA.MomID

AnimID of the individual’s mother

DadID

AnimID of the individual’s father, suffixed with _prelim if DadPrelim is TRUE

DadIDPub

BIOGRAPHY_DATA.DadIDPub

Publication of Paternity citation

FirstBorn

BIOGRAPHY_DATA.FirstBorn

First born status code

BirthDate

BIOGRAPHY_DATA.BirthDate

Birth Date

BDMin

BIOGRAPHY_DATA.BDMin

Minimum Birth Date

BDMax

BIOGRAPHY_DATA.BDMax

Maximum Birth Date

BDDist

BIOGRAPHY_DATA.BDDist

Birth Date Distribution

EntryDate

BIOGRAPHY_DATA.EntryDate

Date of study Entry

EntryType

BIOGRAPHY_DATA.EntryType

Entry status code

DepartDate

BIOGRAPHY_DATA.DepartDate

Date last seen

DepartType

BIOGRAPHY_DATA.DepartType

Depart date status code

Operations Allowed

None.

Page last generated: 2025-04-01 22:52:03 UTC